开发者

customize the django admin panel?

开发者 https://www.devze.com 2022-12-21 09:42 出处:网络
I want to change the django bydefault admin panel title bar where wirte the django administration. Actually I want to replace th开发者_开发技巧e django administration with the my site name.I found out

I want to change the django bydefault admin panel title bar where wirte the django administration. Actually I want to replace th开发者_开发技巧e django administration with the my site name.


I found out the solution: Make the file in notpad

{% extends "admin/base.html" %}
{% load i18n %}

{% block title %}{{ title }} | {% trans 'Your Customize name' %}{% endblock %}

{% block branding %}
<h1 id="site-name">{% trans 'Your Customize name administration' %}</h1>
{% endblock %}

{% block nav-global %}{% endblock %}

and then save the above file with the name "base_site.html" in the folder name "admin" of your project directory. Also give the path of admin parent directory in the settings.py file under TEMPLATE_DIRS in inverted commas.


Have a look a django-grappelli : http://code.google.com/p/django-grappelli/

Or

Do it yourself : http://docs.djangoproject.com/en/dev/ref/contrib/admin/#overriding-admin-templates

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号