1
{% extends "base.html" %}
3
{% block title %} Wiki {% endblock %}
8
<div id="page_header" class="yui3-u-1">
9
<div class="content-left">
10
<h2>New Template:</h2>
16
<div id="page_header" class="yui3-u-1">
17
<div class="content-left content-right">
18
{{ h.form(h.url(controller="admin/wiki",
19
action="process_create_page_template"),
22
{{ h.hidden("old_name") }}
26
<span class="entry-hint">This is what your template will be called.</span></td>
27
<td>{{ h.text('name') }}</td>
31
<span class="entry-hint">The folder that pages derived from this template
32
will be put in by default.</span></td>
33
<td>{{ h.text('save_location') }}</td>
37
<span class="entry-hint">A brief description of the template.</span></td>
38
<td>{{ h.textarea('description', cols=45, rows=5) }}</td>
41
{{ h.textarea("content", rows=20, style='width:99%') }}<br>
42
{{ h.submit('save', 'Save') }}
43
{{ h.end_form() }}</p>