Files
benchcoach-django/templates/edit.html
Tony 33c772bd2f develop templates for consolidated apps benchcoach
attempted to use as much generic view as possible. the previous views were generic anyway. also did some managing of inheritance (extends/includes)
2021-12-21 17:18:04 -06:00

9 lines
206 B
HTML

{% extends 'base.html' %}
{% block content %}
<form action={% url call_back id=id%} method="post">
{% csrf_token %}
{{ form|crispy }}
<input type="submit" value="Submit">
</form>
{% endblock %}