Commit 342a68d216a0c4ea531ab8aefd8dae634580f437

Authored by Neil Blakey-Milner
1 parent 129d9a03

Add system fieldset creation support, and add some helptext.


git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/trunk@3989 c91229c3-7414-0410-bfa2-8a42b809f60b
templates/ktcore/metadata/listFieldsets.smarty
... ... @@ -51,8 +51,25 @@ border="0" src="{"icons/delete.png"|imgSrc}" title="Delete fieldset" /></a>
51 51 <input type="hidden" name="action" value="new">
52 52 <table class="prettysw" cellpadding="0" cellspacing="0">
53 53 <tr><th>Name</th><td><input type="textbox" name="name" /></td></tr>
54   -<tr><th>Namespace</th><td><input type="textbox" name="namespace" /></td></tr>
55   -<tr><th>Generic</th><td><input type="checkbox" name="generic" value="true" /></td></tr>
  54 +<tr>
  55 + <th>Generic</th>
  56 + <td style="text-align: left">
  57 + <input type="checkbox" name="generic" value="true" /><br />
  58 + <p class="helpText">A generic fieldset is one that
  59 + is available for every document by default. These fieldsets
  60 + will be available for users to edit and add for every document in
  61 + the document management system.</p>
  62 + </td>
  63 +</tr>
  64 +<tr>
  65 + <th>System</th>
  66 + <td>
  67 + <input type="checkbox" name="system" value="true" /><br />
  68 + <p class="helpText">A system fieldset is one that
  69 + is never displayed to a user, and is used only by the document
  70 + management system.</p>
  71 + </td>
  72 +</tr>
56 73 </table>
57 74 <input type="submit" name="submit" value="Create" />
58 75 </form>
... ...