OpenSlides/openslides/agenda/templates/agenda/edit.html

36 lines
933 B
HTML
Raw Normal View History

{% extends "base.html" %}
2012-02-09 16:57:10 +01:00
{% load i18n %}
{% block title %}
{{ block.super }}
{% if item %}
{{ item.title }} {% trans "Edit item" %}
{% else %}
{% trans "New item" %}
{% endif %}
{% endblock %}
2011-07-31 10:46:29 +02:00
{% block content %}
<h1>
2012-09-06 23:59:03 +02:00
{% if item %}
{% trans "Edit item" %}
{% else %}
{% trans "New item" %}
{% endif %}
<small class="pull-right">
2013-01-05 15:29:57 +01:00
<a href="{% url 'item_overview' %}" class="btn btn-mini"><i class="icon-chevron-left"></i> {% trans "Back to overview" %}</a>
2012-09-06 23:59:03 +02:00
</small>
</h1>
2011-07-31 10:46:29 +02:00
<form action="" method="post">{% csrf_token %}
{% include "form.html" %}
<p>
{% include "formbuttons_saveapply.html" %}
<a href='{% url 'item_overview' %}' class="btn">
{% trans 'Cancel' %}
</a>
</p>
<small>* {% trans "required" %}</small>
2011-07-31 10:46:29 +02:00
</form>
{% endblock %}