gwift_old/templates/wish/wish_update.html

15 lines
300 B
HTML

{% extends "base.html" %}
{% block content %}
<h3>Editer {{ wish.name }}</h3>
<form action="{{ action }}" method="POST">
{% csrf_token %}
<ul>
{{ form.as_ul }}
</ul>
<input id="save_wish" type="submit" value="Save" />
</form>
{% endblock %}