mirror of
https://github.com/Sosokker/ku-polls.git
synced 2025-12-19 05:24:05 +01:00
12 lines
422 B
HTML
12 lines
422 B
HTML
{% 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 Page</a></div>
|
|
{% if user.is_anonymous %}
|
|
{% include "admin/color_theme_toggle.html" %}
|
|
{% endif %}
|
|
{% endblock %}
|
|
|
|
{% block nav-global %}{% endblock %} |