ctdo-trac/TracRendezVous/tracrendezvous/rendezvous/templates/admin_overview.html

39 lines
1.2 KiB
HTML

<!DOCTYPE html
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:xi="http://www.w3.org/2001/XInclude"
xmlns:py="http://genshi.edgewall.org/">
<xi:include href="admin.html" />
<head>
<title>$label_plural</title>
<script type="text/javascript">
/* <![CDATA[ */
/* ]]> */
</script>
</head>
<body>
<h2>Overview Configuration</h2>
<form id="overview" name="overview" method="post" action="">
<fieldset>
<legend>Overview Configuration</legend>
<div class="overview-row" py:for="l in all_status">
<div class="overview-set">
${l[0]}
<input type="text" id="cat_${l[1]}" name="${l[0]}" size="3" maxlength="3" value="${l[1]}"/><span py:if="len(l) == 4" class="error">wrong position - should be ${l[3]}!</span>
<input type="checkbox" name="show" value="${l[0]}" checked="${l[2] and 'checked' or None}"/>
</div>
</div>
<p class="help">
help
</p>
<div class="buttons">
<input type="submit" name="save" value="Save" />
</div>
</fieldset>
</form>
</body>
</html>