django-polls/templates/admin/base_site.html
2023-01-11 19:43:36 +01:00

10 lines
324 B
HTML

{% extends "admin/base.html" %}
{% block title %}{% if subtitle %}{{ subtitle }} | {% endif %}{{ title }} | {{ site_title|default:_('Django site admin') }}{% endblock %}
{% block branding %}
<h1 id="site-name"><a href="{% url 'admin:index' %}">PankiPoll Admin</a></h1>
{% endblock %}
{% block nav-global %}{% endblock %}