hausarbeit-hikmat_galan_neu.../mensaviewer/templates/location/edit.html
Jannes Hikmat 4b07f346a0
All checks were successful
continuous-integration/drone/push Build is passing
templates, css & views nochmal überarbeitet
2023-01-08 21:16:45 +01:00

17 lines
302 B
HTML

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