Generated static files and modified settings.py
This commit is contained in:
parent
02bb53d84e
commit
03741a236b
132 changed files with 30301 additions and 7 deletions
18
templates/admin/base_site.html
Normal file
18
templates/admin/base_site.html
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
{% extends "admin/base_site.html" %}
|
||||
|
||||
{% block title %}
|
||||
{% if subtitle %}
|
||||
{{ subtitle }} |
|
||||
{% endif %}
|
||||
{{ title }} |
|
||||
{{ site_title|default:_('Djangosite admin') }}
|
||||
{% endblock %}
|
||||
|
||||
{% block branding %}
|
||||
<h1 id="site-name">
|
||||
<a href="{% url 'admin:index' %}">House Wars Admin Page</a>
|
||||
</h1>
|
||||
{% endblock %}
|
||||
|
||||
{% block nav-global %}
|
||||
{% endblock %}
|
||||
Reference in a new issue