Project

General

Profile

Download (378 Bytes) Statistics
| Branch: | Tag: | Revision:

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

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

    
4
{% block appbar %}
5
{% if object %}
6
  <h2>{% trans "Modify 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>{% trans "Save" %}</button>
18
  </div>
19
</form>
20
{% endblock %}
(5-5/7)