Child: [462c18] (diff)

Download this file

admin_home.html    25 lines (22 with data), 687 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{% extends 'jinja_master/master.html' %}
{% block title %}{{c.project.name}} / {{c.app.config.options.mount_label}} / Admin Home{% endblock %}
{% block header %}{{app.config.options.mount_point}} Admin Home{% endblock %}
{% block content %}
<form method="POST" action="set_home">
<ol>
<li>
<label for="title">Wiki Home Page:</label>
{% if allow_config %}
<input type="text" name="new_home" id="new_home" value="{{home}}"/>
{% else %}
<span>{{home}}</span>
{% endif %}
</li>
<hr/>
<li>
<label>&nbsp;</label>
{% if allow_config %}<input type="submit" value="Save"/>{% endif %}
</li>
</ol>
</form>
{% endblock %}