2011-08-08 10:58:50 +01:00
|
|
|
{% extends "expobase.html" %}
|
2011-06-02 19:16:16 +01:00
|
|
|
{% block title %}Edit {{ path }}{% endblock %}
|
2011-08-08 10:58:50 +01:00
|
|
|
{% block extrahead %}
|
2022-06-26 18:29:20 +01:00
|
|
|
{% include 'html_editor_scripts_css.html' %}
|
2011-06-02 19:16:16 +01:00
|
|
|
{% endblock %}
|
2011-08-08 10:58:50 +01:00
|
|
|
{% block body %}
|
2022-06-25 23:17:19 +01:00
|
|
|
|
2022-06-26 18:29:20 +01:00
|
|
|
<h1>Edit {{ path }}</h1>
|
|
|
|
{% include 'html_editor_pop_ups.html' %}
|
2011-06-02 19:16:16 +01:00
|
|
|
<form action="" method="post">{% csrf_token %}
|
2022-06-26 14:16:42 +01:00
|
|
|
{{ form.as_p }}
|
2011-06-02 19:16:16 +01:00
|
|
|
<p><input type="submit" value="Submit" /></p>
|
|
|
|
</form>
|
2022-06-26 14:16:42 +01:00
|
|
|
{% include "menu.html" %}
|
2022-06-26 18:29:20 +01:00
|
|
|
|
|
|
|
|
2011-06-02 19:16:16 +01:00
|
|
|
{% endblock %}
|
2022-06-26 18:29:20 +01:00
|
|
|
|