2
0
mirror of https://expo.survex.com/repositories/troggle/.git synced 2024-11-21 23:01:52 +00:00
troggle/templates/editexpopage.html

19 lines
406 B
HTML

{% extends "expobase.html" %}
{% block title %}Edit {{ path }}{% endblock %}
{% block extrahead %}
{% include 'html_editor_scripts_css.html' %}
{% endblock %}
{% block body %}
<h1>Edit {{ path }}</h1>
{% include 'html_editor_pop_ups.html' %}
<form action="" method="post">{% csrf_token %}
{{ form.as_p }}
<p><input type="submit" value="Submit" /></p>
</form>
{% include "menu.html" %}
{% endblock %}