mirror of
https://github.com/HS-Flensburg-Klein/hausarbeit-hikmat_galan_neumann_stark_becker
synced 2025-02-22 23:23:31 +00:00
17 lines
311 B
HTML
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 %}
|