2012-07-08 16:23:39 +02:00
|
|
|
{% extends "templates/base.html" %}
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
<form action="/category/edit/{{ category.id }}" method="post">
|
|
|
|
{% csrf_token %}
|
|
|
|
{{ form.as_p }}
|
2012-10-09 20:47:12 +02:00
|
|
|
<input type="submit" name="edit" value="Edit" /> <input type="submit" name="cancel" value="Cancel" />
|
2012-07-08 16:23:39 +02:00
|
|
|
</form>
|
|
|
|
{% endblock %}
|