Revision: 801
http://cs-project.svn.sourceforge.net/cs-project/?rev=801&view=rev
Author: crazedsanity
Date: 2008-02-06 23:36:05 -0800 (Wed, 06 Feb 2008)
Log Message:
-----------
Block rows (purposely misstyped) to create each type of configuration option.
Modified Paths:
--------------
trunk/1.2/templates/content/settings/admin.content.tmpl
Modified: trunk/1.2/templates/content/settings/admin.content.tmpl
===================================================================
--- trunk/1.2/templates/content/settings/admin.content.tmpl 2008-02-07 07:10:01 UTC (rev 800)
+++ trunk/1.2/templates/content/settings/admin.content.tmpl 2008-02-07 07:36:05 UTC (rev 801)
@@ -2,7 +2,56 @@
<h2><font color="red">Administrative Settings</font></h2>
-<a name="group">
+<a name="config" />
+<table border="1" cellpadding="3" cellspacing="0">
+<tr>
+ <th colspan="2">Config Settings</th>
+</tr>
+<tr>
+ <th>Name/Description</th>
+ <th>Value/Select Option</th>
+</tr>
+<!-- BEGIN xsetting_text -->
+ <tr>
+ <td>
+ <b>%%title%%</b><hr>
+ %%description%%
+ </td>
+
+ <td><input name="%%index%%" type="text" value="%%value%%" %%disabled%%></td>
+ </tr>
+<!-- END setting_text -->
+<!-- BEGIN xsetting_select -->
+ <tr>
+ <td>
+ <b>%%title%%</b><hr>
+ %%description%%
+ </td>
+
+ <td>
+ <select name="%%index%%" %%disabled%%>
+ <!-- BEGIN xsetting_select__normal -->
+ <option value="%%value%%">%%displayValue%%</option>
+ <!-- END setting_select__normal -->
+ <!-- BEGIN xsetting_select__onSelect -->
+ <option value="%%value%%" onSelect="enableInput(%%namedSection%%);">%%displayValue%%</option>
+ <!-- END setting_select__onSelect -->
+ </select>
+ </td>
+ </tr>
+<!-- END setting_select -->
+<!-- BEGIN xsetting_hidden -->
+ <tr>
+ <td>
+ <!-- NOTE: should we even have hidden elements in the form? -->
+ <input type="HIDDEN" name="%%index%%" value="%%value%%">
+ </td>
+ </tr>
+<!-- END setting_hidden -->
+</table>
+
+
+<a name="group" />
<table border=1 cellpadding=3 cellspacing=0>
<tr>
<th colspan="3"><a href="#groupManagement"></a>Group Management</th>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|