~statik/+junk/webver

« back to all changes in this revision

Viewing changes to lib/django-reversion-1.5.1/src/reversion/templates/reversion/revision_form.html

  • Committer: Elliot Murphy
  • Date: 2011-11-01 15:42:19 UTC
  • Revision ID: elliot@elliotmurphy.com-20111101154219-q0hv9ibhhs3qc9eg
Move from reversion 1.5.1 to 1.4

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
{% extends "admin/change_form.html" %}
2
 
{% load i18n %}
3
 
 
4
 
 
5
 
{% block breadcrumbs %}
6
 
        <div class="breadcrumbs">
7
 
                <a href="{% url admin:index %}">{% trans "Home" %}</a> &rsaquo;
8
 
                <a href="{% url admin:app_list app_label %}">{{app_label|capfirst|escape}}</a> &rsaquo; 
9
 
                <a href="{{changelist_url}}">{{opts.verbose_name_plural|capfirst}}</a> &rsaquo;
10
 
                <a href="{{change_url}}">{{original|truncatewords:"18"}}</a> &rsaquo;
11
 
                <a href="../">{% trans "History" %}</a> &rsaquo;
12
 
                {% blocktrans with opts.verbose_name as verbose_name %}Revert {{verbose_name}}{% endblocktrans %}
13
 
        </div>
14
 
{% endblock %}
15
 
 
16
 
 
17
 
{% block content %}
18
 
        {% with 1 as is_popup %}
19
 
                {{block.super}}
20
 
        {% endwith %}
21
 
{% endblock %}
22
 
 
23
 
 
24
 
{% block form_top %}
25
 
        <p>{% blocktrans %}Press the save button below to revert to this version of the object.{% endblocktrans %}</p>
26
 
{% endblock %}
27