58 lines
2.2 KiB
HTML
58 lines
2.2 KiB
HTML
|
<!DOCTYPE htm
|
||
|
PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
|
||
|
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||
|
<html xmlns="http://www.w3.org/1999/xhtml"
|
||
|
xmlns:py="http://genshi.edgewall.org/"
|
||
|
xmlns:xi="http://www.w3.org/2001/XInclude">
|
||
|
<xi:include href="admin.html" />
|
||
|
<head>
|
||
|
<title>RendezVous General Settings</title>
|
||
|
</head>
|
||
|
<body>
|
||
|
<h2>General Settings</h2>
|
||
|
<form class='mod' id="modbasic" action="" method="post">
|
||
|
<fieldset>
|
||
|
<legend>RendezVous</legend>
|
||
|
<div class="field">
|
||
|
<label>max description length:<br/>
|
||
|
<input type="text" name="max_description_length" value="${max_description_length}"/>
|
||
|
</label>
|
||
|
</div>
|
||
|
<div class="field">
|
||
|
<label>max votes per date:<br/>
|
||
|
<input type="text" name="max_votes_per_date" value="${max_votes_per_date}"/>
|
||
|
</label>
|
||
|
</div>
|
||
|
<div class="field">
|
||
|
<label>max dates per rendezvous:<br/>
|
||
|
<input type="text" name="max_dates_per_rendezvous" value="${max_dates_per_rendezvous}"/>
|
||
|
</label>
|
||
|
</div>
|
||
|
<div class="field">
|
||
|
<label>graph width:<br/>
|
||
|
<input type="text" name="graph_size_x" value="${graph_size_x}"/>
|
||
|
</label>
|
||
|
</div>
|
||
|
<div class="field">
|
||
|
<label>graph height:<br/>
|
||
|
<input type="text" name="graph_size_y" value="${graph_size_y}"/>
|
||
|
</label>
|
||
|
</div>
|
||
|
<div class="field">
|
||
|
<label>show vote graph:<br/>
|
||
|
<input type="checkbox" name="show_vote_graph" checked="${show_vote_graph and 'checked' or None}"/>
|
||
|
</label>
|
||
|
</div>
|
||
|
<div class="field">
|
||
|
<label>show location map:<br/>
|
||
|
<input type="checkbox" name="show_location_map" checked="${show_location_map and 'checked' or None}"/>
|
||
|
</label>
|
||
|
</div>
|
||
|
</fieldset>
|
||
|
<div class="buttons">
|
||
|
<input type="submit" value="Apply changes" />
|
||
|
</div>
|
||
|
</form>
|
||
|
</body>
|
||
|
</html>
|