Project_Camper/vagus/template/offer/update-offer.html
2021-02-06 12:31:59 +01:00

11 lines
210 B
HTML
Executable File

{% extends 'index.html' %}
{% load static %}
{% block content %}
<form method="post">{% csrf_token %}
{{ form.as_p }}
{{formset.as_p}}
<input type="submit" value="Update">
</form>
{% endblock %}