hausarbeit-hikmat_galan_neu.../mensaviewer/templates/news/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
311 B
HTML

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