3
3
{% block title %} Wiki {% endblock %}
8
<div id="page_header" class="yui3-u-1">
9
<div class="content-left">
22
<div id="page_header" class="yui3-u-1">
23
<div class="content-left content-right">
28
<td>{{ template.name }}</td>
32
<td>{{ template.description }}</td>
35
<td>Save Location:</td>
36
<td>{{ template.save_location }}</td>
41
{{ h.link_to("Edit", h.url(controller="admin/wiki",
42
action="edit_page_template",
43
filename=filename)) }},
44
{{ h.link_to("Delete", h.url(controller="admin/wiki",
45
action="delete_page_template",
47
confirm="Are you sure you wish to delete this page template?") }}
55
{{ formatter.format(template.name,
57
strip_html=False).replace('\n', '<br>') }}
63
There is no template with this name.<br>
64
{{h.link_to('Click here to create it', h.url(controller='admin/wiki',
65
action='edit_page_template',
8
{{ h.link_to("Edit", h.url(controller="admin/wiki", action="edit_template", filename=filename))}}<br>
9
Name: {{ template.name }}<br>
10
Description: {{ template.description }}<br>
11
Save Location: {{ template.save_location }}<br>
13
{{ formatter.format(template.name, template.content.replace('\n', '<br>'), strip_html=False) }}<br>
15
There is no template with that name.<br>
16
{{h.link_to('Click here to create it', h.url(controller='admin/wiki',
17
action='edit_template',
b'\\ No newline at end of file'