hausarbeit-hikmat_galan_neu.../mensaviewer/templates/location/edit.html

17 lines
302 B
HTML
Raw Permalink Normal View History

2023-01-08 18:51:05 +00:00
{% extends 'base.html' %}
{% block title %}Edit Location{% endblock %}
{% block header %}<h1>Edit location {{ object.name }}</h1>{% endblock %}
2023-01-08 18:51:05 +00:00
{% block content %}
<form class="model-form" method="post">
{% csrf_token %}
{{ form }}
<input type="submit" value="Save">
</form>
{% endblock %}