12 lines
363 B
HTML
12 lines
363 B
HTML
{% extends "base.html" %}
|
|
{% block content %}
|
|
<div class="card">
|
|
<h1>{% if object %}Edit template{% else %}New template{% endif %}</h1>
|
|
<form method="post" class="grid">
|
|
{% csrf_token %}
|
|
{{ form.as_p }}
|
|
<button type="submit">{% if object %}Update template{% else %}Save template{% endif %}</button>
|
|
</form>
|
|
</div>
|
|
{% endblock %}
|