This commit is contained in:
2026-05-18 14:08:13 -04:00
commit 377326ec2c
36 changed files with 1473 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
{% 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 %}