mirror of
https://github.com/ae-utbm/sith.git
synced 2025-03-30 16:30:25 +00:00
14 lines
294 B
HTML
14 lines
294 B
HTML
{% extends "core/page.html" %}
|
|
|
|
{% block page %}
|
|
<h2>Edit page</h2>
|
|
<form action="{% url 'core:page_edit' page_name=page.get_full_name %}" method="post">
|
|
{% csrf_token %}
|
|
{{ form.as_p }}
|
|
<p><input type="submit" value="Save!" /></p>
|
|
</form>
|
|
{% endblock %}
|
|
|
|
|
|
|