2014-02-02 14:21:16 +01:00
|
|
|
{% extends "base.html" %}
|
2012-07-08 16:23:39 +02:00
|
|
|
|
|
|
|
{% block content %}
|
2014-11-13 19:25:02 +01:00
|
|
|
<form action="/category/add/{{ blog.id }}" method="post">{% csrf_token %}
|
2012-07-08 16:23:39 +02:00
|
|
|
{{ form.as_p }}
|
|
|
|
<input type="submit" name="add" value="Add" />
|
|
|
|
<input type="submit" name="cancel" value="Cancel" />
|
|
|
|
</form>
|
|
|
|
{% endblock %}
|