summaryrefslogtreecommitdiffstats
path: root/templates/editexpopage.html
blob: 28ac165a12e179edaf9c6d69540f726b21efbdd4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{% extends "expobase.html" %}
{% block title %}Edit {{ path }}{% endblock %}
{% block extrahead %}
{% include 'html_editor_scripts_css.html' %} <!-- JS magic to make a popup image selector page -->
{% 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 %}