forked from expo/troggle
19 lines
406 B
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 %}
|
|
|