手机
当前位置:查字典教程网 >脚本专栏 >python >使用grappelli为django admin后台添加模板
使用grappelli为django admin后台添加模板
摘要:grappelli是github上面star最多的django模板系统http://django-grappelli.readthedocs...

grappelli是github上面star最多的django模板系统

http://django-grappelli.readthedocs.org/en/latest/quickstart.html#installation

复制代码 代码如下:

pip install django-grappelli

settings.py

INSTALLED_APPS = (

'grappelli',

'django.contrib.admin',

)

添加url项

复制代码 代码如下:

urlpatterns = patterns('',

(r'^grappelli/', include('grappelli.urls')), # grappelli URLS

(r'^admin/', include(admin.site.urls)), # admin site

)

官方安装说明中有让定义STATICFILES_FINDER,但是跟默认值一样,忽略

定义模板context processors

复制代码 代码如下:

TEMPLATE_CONTEXT_PROCESSORS = (

"django.contrib.auth.context_processors.auth",

"django.core.context_processors.debug",

"django.core.context_processors.i18n",

"django.core.context_processors.media",

"django.core.context_processors.static",

"django.core.context_processors.tz",

"django.contrib.messages.context_processors.messages"

)

此处为了方便已经加上了django1.7的默认值.

【使用grappelli为django admin后台添加模板】相关文章:

python3使用urllib示例取googletranslate(谷歌翻译)

记录Django开发心得

使用python 获取进程pid号的方法

用python分割TXT文件成4K的TXT文件

python操作xml文件详细介绍

使用python分析git log日志示例

如何运行Python程序的方法

使用python绘制人人网好友关系图示例

使用python实现递归版汉诺塔示例(汉诺塔递归算法)

使用python实现扫描端口示例

精品推荐
分类导航