Parent: [591c74] (diff)

Child: [35a781] (diff)

Download this file

admin_home.html    22 lines (19 with data), 688 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
{% extends g.theme.master %}
{% 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">
<label for="title" class="grid-4">Wiki Home Page:</label>
<div class="grid-14">
{% if allow_config %}
<input type="text" name="new_home" id="new_home" value="{{home}}"/>
{% else %}
<span>{{home}}</span>
{% endif %}
</div>
<label class="grid-4">&nbsp;</label>
<div class="grid-14">
{% if allow_config %}<input type="submit" value="Save"/>{% endif %}
</div>
</form>
{% endblock %}