|
{% extends "base.html" %}
|
|
{% block content %}
|
|
<form action="{% url '#NAME#:add' %}" method="post">
|
|
{% csrf_token %}
|
|
<fieldset>
|
|
<!-- TO IMPLEMENT -->
|
|
<legend>#NAME_UPPERFIRST#</legend>
|
|
{{ form.#NAME# }}
|
|
</fieldset>
|
|
<input type="submit" value="add"/>
|
|
</form>
|
|
{% endblock %}
|