Projet

Général

Profil

Télécharger (471 octets) Statistiques
| Branche: | Tag: | Révision:

root / corbo / templates / corbo / category_form.html @ bc5c3246

1
{% extends "corbo/manage.html" %}
2
{% load i18n %}
3

    
4
{% block appbar %}
5
{% if object %}
6
  <h2>{% trans "Edit Category" %}</h2>
7
{% else %}
8
  <h2>{% trans "New Category" %}</h2>
9
{% endif %}
10
{% endblock %}
11

    
12
{% block content %}
13
<form method="post">
14
  {% csrf_token %}
15
  {{ form.as_p }}
16
  <div class="buttons">
17
    <button class="submit-button">{% trans "Save" %}</button>
18
    <a class="cancel" href="{% url 'manage' %}">{% trans 'Cancel' %}</a>
19
  </div>
20
</form>
21
{% endblock %}
(7-7/12)