24 lines
786 B
HTML
24 lines
786 B
HTML
{% extends "agenda/base_agenda.html" %}
|
|
|
|
{% load i18n %}
|
|
|
|
{% block title %}{{ block.super }} - {%trans "Item" %}{% endblock %}
|
|
|
|
{% block content %}
|
|
<h1>{%trans "Edit item" %}</h1>
|
|
<form action="" method="post">{% csrf_token %}
|
|
{{ form.as_p }}
|
|
<button class="button" type="submit">
|
|
<span class="icon ok">{%trans 'Save' %}</span>
|
|
</button>
|
|
<button class="button" type="submit" name="apply">
|
|
<span class="icon apply">{%trans 'Apply' %}</span>
|
|
</button>
|
|
<a href='{% url item_overview %}'>
|
|
<button class="button" type="button" onclick="window.location='{% url item_overview %}'">
|
|
<span class="icon cancel">{%trans 'Cancel' %}</span>
|
|
</button>
|
|
</a>
|
|
</form>
|
|
{% endblock %}
|