Source for file edittemplates.tpl.php
Documentation is available at edittemplates.tpl.php
<h1>Template Management</h1>
<form action="
<?php echo
$_SERVER['SCRIPT_NAME'] ?>" method="post">
<!-- <label for="template">
<?php echo
$template["template"]['label']; ?></label> <input type="text" name="template" id="template" value='
<?php echo
$template["template"]["value"]; ?>'> -->
<label for="template">
<?php echo
$template["template"]['label']; ?></label> <select name="template" id="template">
<?php foreach($template["template"]["acceptedValues"] as $option) { ?>
<option value="
<?php echo
$option; ?>"
<?php if($option==
$template["template"]["value"]){echo
' selected';} ?>>
<?php echo
$option; ?></option>
<input type="hidden" name="edittemplates" id="edittemplates">
<input type="submit" name="submit" id="submit" value="Save">