|
From: Benjamin C. <bc...@us...> - 2001-10-13 23:15:55
|
Update of /cvsroot/phpbt/phpbt/templates/default/admin
In directory usw-pr-cvs1:/tmp/cvs-serv13358/templates/default/admin
Modified Files:
wrap.html
Added Files:
configure.html
Log Message:
Added an admin interface for the configuration options
--- NEW FILE: configure.html ---
<br>
<form action="{me}" method="post">
<table border="0" width="640">
<tr>
<td valign="top">
<b> Configuration</b>
<hr size="1">
<table border="0">
<tr>
<th>Variable</th>
<th>Value</th>
<th>Information</th>
</tr>
<!-- BEGIN row -->
<tr class="{trclass}">
<td>{varname}</td>
<td>
<!-- BEGIN inputblock -->
<input type="{input_type}" name="{varname}" value="{varvalue}"{checked}>
<!-- END inputblock -->
<!-- BEGIN selectblock -->
<select name="varname">{options}</select>
<!-- END selectblock -->
<!-- BEGIN radioblock -->
<input type="radio" name="{varname}" value="1"{yes}> Yes
<input type="radio" name="{varname}" value="0"{no}> No
<!-- END radioblock -->
</td>
<td>{description}</td>
</tr>
<!-- END row -->
</table>
</td>
</tr>
<tr>
<td align="center">
<input type="reset" value="Reset Form">
<input type="submit" name="submit" value="Submit Changes">
</td>
</tr>
</table>
</form>
Index: wrap.html
===================================================================
RCS file: /cvsroot/phpbt/phpbt/templates/default/admin/wrap.html,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- wrap.html 2001/10/11 14:24:04 1.1
+++ wrap.html 2001/10/13 23:15:52 1.2
@@ -13,6 +13,7 @@
<td width="540">
<font class="navfont"><b>
[
+ <a href="configure.php">Configuration</a> |
<a href="project.php">Projects</a> |
<a href="user.php">Users</a> |
<a href="status.php">Statuses</a> |
|