diff options
Diffstat (limited to 'templates/editexpopage.html')
-rw-r--r-- | templates/editexpopage.html | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/templates/editexpopage.html b/templates/editexpopage.html index 22c9106..ae44333 100644 --- a/templates/editexpopage.html +++ b/templates/editexpopage.html @@ -1,15 +1,18 @@ {% extends "expobase.html" %} {% block title %}Edit {{ path }}{% endblock %} {% block extrahead %} - +{% include 'html_editor_scripts_css.html' %} {% endblock %} {% block body %} -<h1>Edit {{ path }}</h1> +<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" %} -{% include 'html_editor_scripts_css.html' %} + + {% endblock %} + |