mirror of
https://expo.survex.com/repositories/troggle/.git
synced 2024-11-22 15:21:52 +00:00
20 lines
520 B
HTML
20 lines
520 B
HTML
{% extends "expobase.html" %}
|
|
{% block title %}Edit {{ path }}{% endblock %}
|
|
{% block extrahead %}
|
|
{% load csrffaker %}
|
|
<script src="{{ settings.TINY_MCE_MEDIA_URL }}tiny_mce.js" type="text/javascript"></script>
|
|
<script type="text/javascript">
|
|
tinyMCE.init({
|
|
mode : "textareas"
|
|
});
|
|
</script>
|
|
{% endblock %}
|
|
{% block body %}
|
|
<h1>Edit {{ path }}</h1>
|
|
<form action="" method="post">{% csrf_token %}
|
|
{{form.as_p}}
|
|
<p><input type="submit" value="Submit" /></p>
|
|
</form>
|
|
{% include "menu.html" %}
|
|
{% endblock %}
|