11 lines
193 B
HTML
11 lines
193 B
HTML
{% extends 'main/header.html' %}
|
|
|
|
{% block content %}
|
|
|
|
<form action="" method='POST'>
|
|
{% csrf_token %}
|
|
{{ form.as_p }}
|
|
<input type='submit' value='Save' />
|
|
</form>
|
|
|
|
{% endblock %} |