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 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 5 <fieldset>
6   -<legend>Add New Unit</legend>
  6 +<legend>{i18n}Add New Unit{/i18n}</legend>
7 7 <p class="descriptiveText">{i18n}Units allow you to delegate the administration of a portion
8 8 of the DMS repository to a particular part of your
9 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 <thead>
17 17 <tr>
18 18 <th>{i18n}Unit Name{/i18n}</th>
  19 +{*
19 20 <th>{i18n}Edit{/i18n}</th>
20 21 <th>{i18n}Delete{/i18n}</th>
  22 +*}
21 23 </tr>
22 24 </thead>
23 25 <tbody>
24 26 {foreach item=oUnit from=$unit_list}
25 27 <tr>
26 28 <td>{$oUnit->getName()}</td>
  29 +{*
27 30 <td><a href="{addQS}action=editUnit&unit_id={$oUnit->getId()}{/addQS}" class="ktAction ktEdit">{i18n}Edit{/i18n}</a></td>
28 31 <td><a href="{addQS}action=deleteUnit&unit_id={$oUnit->getId()}{/addQS}" class="ktAction ktDelete">{i18n}Delete{/i18n}</a></td>
  32 +*}
29 33 </tr>
30 34 {/foreach}
31 35 </tbody>
... ...