Files
benchcoach-django/gamechanger/templates/gamechanger/form.html
2022-06-07 16:55:02 -05:00

8 lines
173 B
HTML

{% extends "base.html" %}
{% block content %}
<form method="post">{% csrf_token %}
{{ form.as_p }}
<input type="submit" value="Save">
</form>
{% endblock content %}