Commit fff41aed27df3cad00f5da1382567aa818daa48e

Authored by Neil Blakey-Milner
1 parent 32fddb2c

Remove the edit and delete icons that weren't implemented.


git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/trunk@4823 c91229c3-7414-0410-bfa2-8a42b809f60b
templates/ktcore/principals/unitadmin.smarty
@@ -3,7 +3,7 @@ @@ -3,7 +3,7 @@
3 <p class="descriptiveText">{i18n}KnowledgeTree allows administrators the ability to create <strong>Units</strong> that model the organisation's business units. Units may have their own administrators and groups may be assigned to these units.{/i18n}</p> 3 <p class="descriptiveText">{i18n}KnowledgeTree allows administrators the ability to create <strong>Units</strong> that model the organisation's business units. Units may have their own administrators and groups may be assigned to these units.{/i18n}</p>
4 4
5 <fieldset> 5 <fieldset>
6 -<legend>Add New Unit</legend> 6 +<legend>{i18n}Add New Unit{/i18n}</legend>
7 <p class="descriptiveText">{i18n}Units allow you to delegate the administration of a portion 7 <p class="descriptiveText">{i18n}Units allow you to delegate the administration of a portion
8 of the DMS repository to a particular part of your 8 of the DMS repository to a particular part of your
9 organisation. Unit administrators have additional rights within that 9 organisation. Unit administrators have additional rights within that
@@ -16,16 +16,20 @@ membership of groups that belong to the unit.{/i18n}&lt;/p&gt; @@ -16,16 +16,20 @@ membership of groups that belong to the unit.{/i18n}&lt;/p&gt;
16 <thead> 16 <thead>
17 <tr> 17 <tr>
18 <th>{i18n}Unit Name{/i18n}</th> 18 <th>{i18n}Unit Name{/i18n}</th>
  19 +{*
19 <th>{i18n}Edit{/i18n}</th> 20 <th>{i18n}Edit{/i18n}</th>
20 <th>{i18n}Delete{/i18n}</th> 21 <th>{i18n}Delete{/i18n}</th>
  22 +*}
21 </tr> 23 </tr>
22 </thead> 24 </thead>
23 <tbody> 25 <tbody>
24 {foreach item=oUnit from=$unit_list} 26 {foreach item=oUnit from=$unit_list}
25 <tr> 27 <tr>
26 <td>{$oUnit->getName()}</td> 28 <td>{$oUnit->getName()}</td>
  29 +{*
27 <td><a href="{addQS}action=editUnit&unit_id={$oUnit->getId()}{/addQS}" class="ktAction ktEdit">{i18n}Edit{/i18n}</a></td> 30 <td><a href="{addQS}action=editUnit&unit_id={$oUnit->getId()}{/addQS}" class="ktAction ktEdit">{i18n}Edit{/i18n}</a></td>
28 <td><a href="{addQS}action=deleteUnit&unit_id={$oUnit->getId()}{/addQS}" class="ktAction ktDelete">{i18n}Delete{/i18n}</a></td> 31 <td><a href="{addQS}action=deleteUnit&unit_id={$oUnit->getId()}{/addQS}" class="ktAction ktDelete">{i18n}Delete{/i18n}</a></td>
  32 +*}
29 </tr> 33 </tr>
30 {/foreach} 34 {/foreach}
31 </tbody> 35 </tbody>