~ubuntu-branches/ubuntu/saucy/python-django/saucy-updates

« back to all changes in this revision

Viewing changes to django/contrib/admin/templates/registration/password_reset_confirm.html

  • Committer: Package Import Robot
  • Author(s): Raphaël Hertzog
  • Date: 2012-03-31 14:48:00 UTC
  • mfrom: (1.2.12)
  • mto: This revision was merged to the branch mainline in revision 38.
  • Revision ID: package-import@ubuntu.com-20120331144800-6a44u7d8z6pd2br4
Tags: upstream-1.4
Import upstream version 1.4

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
{% extends "admin/base_site.html" %}
2
2
{% load i18n %}
 
3
{% load url from future %}
3
4
 
4
 
{% block breadcrumbs %}<div class="breadcrumbs"><a href="../">{% trans 'Home' %}</a> &rsaquo; {% trans 'Password reset confirmation' %}</div>{% endblock %}
 
5
{% block breadcrumbs %}
 
6
<div class="breadcrumbs">
 
7
<a href="{% url 'admin:index' %}">{% trans 'Home' %}</a>
 
8
&rsaquo; {% trans 'Password reset confirmation' %}
 
9
</div>
 
10
{% endblock %}
5
11
 
6
12
{% block title %}{% trans 'Password reset' %}{% endblock %}
7
13