update README.md

This commit is contained in:
liuhui
2017-07-20 16:35:08 +08:00
parent 4baf94e0e1
commit 11e4c7b512
13 changed files with 16 additions and 9 deletions
+1
View File
@@ -1,3 +1,4 @@
#coding:utf8
from django.apps import AppConfig
+1
View File
@@ -1,3 +1,4 @@
#coding:utf8
__author__ = 'liuhui'
from django import forms
+1 -1
View File
@@ -1,4 +1,4 @@
from datetime import datetime
#coding:utf8
from django.db import models
from djangoblog import settings
+3 -2
View File
@@ -1,6 +1,7 @@
#coding:utf8
from django.shortcuts import render, render_to_response
from django.http import HttpResponse, Http404, HttpResponseRedirect
from django.views.generic import ListView, TemplateView, View, DetailView
from django.http import HttpResponseRedirect
from django.views.generic import ListView, DetailView
from blog.models import Article, Category, Link
from comments.models import Comment
from users.models import UserProfile
+1
View File
@@ -1,3 +1,4 @@
#coding:utf8
from django.apps import AppConfig
+1
View File
@@ -1,3 +1,4 @@
#coding:utf8
from django.db import models
from django.conf import settings
from blog.models import Article
+1
View File
@@ -1,3 +1,4 @@
#coding:utf8
import logging
import datetime
+2
View File
@@ -1,3 +1,5 @@
#coding:utf8
__author__ = 'liuhui'
import xadmin
+1
View File
@@ -1,3 +1,4 @@
#coding:utf8
from django.apps import AppConfig
+1
View File
@@ -1,3 +1,4 @@
#coding:utf8
__author__ = 'liuhui'
import random
+1 -3
View File
@@ -1,6 +1,4 @@
import hashlib
import random
import string
#coding:utf8
from django.db import models
from django.contrib.auth.models import AbstractUser, BaseUserManager
+1 -3
View File
@@ -1,6 +1,4 @@
from PIL import Image
import random
#coding:utf8
from django.shortcuts import render, HttpResponse
from django.http import HttpResponsePermanentRedirect
from django.contrib.auth import login as auth_login, logout as auth_logout, authenticate
+1
View File
@@ -1,3 +1,4 @@
#coding:utf8
"""
Django settings for djangoblog project.