forked from feincms/feincms
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrevision_form.html
More file actions
25 lines (21 loc) · 1008 Bytes
/
Copy pathrevision_form.html
File metadata and controls
25 lines (21 loc) · 1008 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{% extends "admin/feincms/item_editor.html" %}
{% load url from future %}
{% load i18n %}
{% block breadcrumbs %}
<div class="breadcrumbs">
<a href="{% url "admin:index" %}">{% trans "Home" %}</a> ›
<a href="{% url "admin:app_list" app_label %}">{{app_label|capfirst|escape}}</a> ›
<a href="{{changelist_url}}">{{opts.verbose_name_plural|capfirst}}</a> ›
<a href="{{change_url}}">{{original|truncatewords:"18"}}</a> ›
<a href="../">{% trans "History" %}</a> ›
{% blocktrans with opts.verbose_name as verbose_name %}Revert {{verbose_name}}{% endblocktrans %}
</div>
{% endblock %}
{% block content %}
{% with 1 as is_popup %}
{{block.super}}
{% endwith %}
{% endblock %}
{% block form_top %}
<p>{% blocktrans %}Press the save button below to revert to this version of the object.{% endblocktrans %}</p>
{% endblock %}