标签:cti bsp wget convert splay 0.0.0.0 替换 isp mod
但是现在页面不是那么好看,而且界面是英文的,那么我们需要做一些修改
首先我们先安装一个bootstrap的插件
LANGUAGE_CODE = ‘zh-hans‘
TIME_ZONE = ‘Asia/Shanghai‘
修改后的,首先插入bootstrap的管理页面插件,然后语言设置为中文,时区更改为中国。
from django.contrib import admin
from blog.models import Article
class ArticleAdmin(admin.ModelAdmin):
list_display = (‘title‘,‘pub_date‘)
admin.site.register(Article,ArticleAdmin)
打开blod/models.py
#coding:utf8
from future import unicode_literals
from django.db import models
class Article(models.Model):
title = models.CharField(u"博客标题",max_length = 100) #博客标题
category = models.CharField(u"博客标签",max_length = 50,blank = True) #博客标签
pub_date = models.DateTimeField(u"发布日期",auto_now_add = True,editable=True) #博客发布日期
update_time = models.DateTimeField(u‘更新时间‘,auto_now=True,null=True)
content = models.TextField(blank=True, null=True) # 博客文章正文
def __unicode__(self):
return self.title
class Meta: #按时间下降排序
ordering = [‘-pub_date‘]
verbose_name = "文章"
verbose_name_plural = "文章"
这样我们就创建了第一个属于我们博客的模型——文章。
然后,然后我们就同步数据库咯 python manage.py dbshell
delete from django_migrations where app=‘bolog‘;
rm -rf migrations/ pycache/
python manage.py makemigrations
python manage.py migrate
标签:cti bsp wget convert splay 0.0.0.0 替换 isp mod
原文地址:https://www.cnblogs.com/gaoliang816/p/10233858.html