You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
{% extends "admin/base.html" %}
|
|
|
|
|
|
{% block title %}{% if subtitle %}{{ subtitle }} | {% endif %}{{ title }} | {{ site_title|default:_('Django site admin') }}{% endblock %}
|
|
|
|
|
|
{% block branding %}
|
|
|
<div id="site-name"><a href="{% url 'admin:index' %}">Polls Administration</a></div>
|
|
|
{% if user.is_anonymous %}
|
|
|
{% include "admin/color_theme_toggle.html" %}
|
|
|
{% endif %}
|
|
|
{% endblock %}
|
|
|
|
|
|
{% block nav-global %}{% endblock %}
|