This repository has been archived on 2023-02-21. You can view files and clone it, but cannot push or open issues or pull requests.
polynum/polynum/base/templates/admin/base_site.html

19 lines
502 B
HTML

{% extends "admin/base.html" %}
{% load i18n %}
{% load url from future %}
{% block title %}PolyNum :: Administration{% endblock %}
{% block branding %}
<h1 id="site-name">PolyNum &mdash; Administration</h1>
{% endblock %}
{% block userlinks %}
<a href="/">{% trans 'Return to site' %}</a> |
<a href="http://doc.entrouvert.org/polynum/stable/">{% trans 'Documentation' %}</a> |
<a href="{% url 'admin:logout' %}">{% trans 'Log out' %}</a>
{% endblock %}
{% block nav-global %}{% endblock %}