mirror of
https://github.com/django/django.git
synced 2025-12-08 02:34:08 +03:00
Thanks to Florian Apolloner for both the initial patch and his final push to get this fixed, to Dario Ocles for his great work on the admin templates and switching the admin_doc application to also use named URLs, to Mikko Hellsing for his comments and to Jannis and Julien for their review and design guidance. Fixes #15294. git-svn-id: http://code.djangoproject.com/svn/django/trunk@16857 bcc190cf-cafb-0310-a4f2-bffc1f526a37
14 lines
401 B
HTML
14 lines
401 B
HTML
{% extends "admin/base_site.html" %}
|
|
{% load i18n %}
|
|
{% load url from future %}
|
|
|
|
{% block breadcrumbs %}<div class="breadcrumbs"><a href="{% url 'admin:index' %}">{% trans 'Home' %}</a></div>{% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
<p>{% trans "Thanks for spending some quality time with the Web site today." %}</p>
|
|
|
|
<p><a href="{% url 'admin:index' %}">{% trans 'Log in again' %}</a></p>
|
|
|
|
{% endblock %}
|