Gab's Notes backend
https://gabnotes.org
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.
13 lines
409 B
13 lines
409 B
{% extends "admin/base.html" %} |
|
|
|
{% block title %}{{ title }} | {{ site_title|default:_('Django site admin') }}{% endblock %} |
|
|
|
{% block branding %} |
|
<h1 id="site-name"><a href="{% url 'admin:index' %}">{{ site_header|default:_('Django administration') }}</a></h1> |
|
{% endblock %} |
|
|
|
{% block extrahead %} |
|
{% include "articles/snippets/favicon.html" %} |
|
{% endblock %} |
|
|
|
{% block nav-global %}{% endblock %}
|
|
|