mirror of
https://github.com/HS-Flensburg-Klein/hausarbeit-hikmat_galan_neumann_stark_becker
synced 2025-02-23 14:53:30 +00:00
17 lines
282 B
HTML
17 lines
282 B
HTML
{% extends 'base.html' %}
|
|
|
|
|
|
{% block title %}Edit Comment{% endblock %}
|
|
|
|
{% block header %}<h1>Edit Comment</h1>{% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
<form class="model-form" method="post">
|
|
{% csrf_token %}
|
|
{{ form }}
|
|
<input type="submit" value="Save">
|
|
</form>
|
|
|
|
{% endblock %}
|