A bit of refactoring.
[timetracker.git] / WEB-INF / templates / cf_custom_fields.tpl
index 601c4fc..5d254e9 100644 (file)
@@ -2,38 +2,38 @@
 <table cellspacing="0" cellpadding="7" border="0" width="720">
   <tr>
     <td valign="top">
-      {if $user->canManageTeam()}
-         <table cellspacing="1" cellpadding="3" border="0" width="100%">
+{if $user->can('manage_custom_fields')}
+      <table cellspacing="1" cellpadding="3" border="0" width="100%">
         <tr>
           <td width="50%" class="tableHeader">{$i18n.label.thing_name}</td>
           <td class="tableHeader">{$i18n.label.type}</td>
           <td class="tableHeader">{$i18n.menu.options}</td>
-          <td class="tableHeader">{$i18n.label.edit}</td>
-          <td class="tableHeader">{$i18n.label.delete}</td>
+          <td></td>
+          <td></td>
         </tr>
-        {if $custom_fields}
-          {foreach $custom_fields as $field}
-        <tr bgcolor="{cycle values="#f5f5f5,#dedee5"}">
-          <td>{$field['label']|escape:'html'}</td>
-          {if CustomFields::TYPE_TEXT == $field['type']}
+  {if $custom_fields}
+    {foreach $custom_fields as $field}
+        <tr bgcolor="{cycle values="#f5f5f5,#ffffff"}">
+          <td>{$field['label']|escape}</td>
+      {if CustomFields::TYPE_TEXT == $field['type']}
           <td>{$i18n.label.type_text}</td>
           <td></td>
-          {else if CustomFields::TYPE_DROPDOWN == $field['type']}
+      {elseif CustomFields::TYPE_DROPDOWN == $field['type']}
           <td>{$i18n.label.type_dropdown}</td>
           <td><a href="cf_dropdown_options.php?field_id={$field['id']}">{$i18n.label.configure}</a></td>
-          {/if}
-          <td><a href="cf_custom_field_edit.php?id={$field['id']}">{$i18n.label.edit}</a></td>
-          <td><a href="cf_custom_field_delete.php?id={$field['id']}">{$i18n.label.delete}</a></td>
+      {/if}
+          <td><a href="cf_custom_field_edit.php?id={$field['id']}"><img class="table_icon" alt="{$i18n.label.edit}" src="images/icon_edit.png"></a></td>
+          <td><a href="cf_custom_field_delete.php?id={$field['id']}"><img class="table_icon" alt="{$i18n.label.delete}" src="images/icon_delete.png"></a></td>
         </tr>
-          {/foreach}
-        {/if}
+    {/foreach}
+  {/if}
       </table>
-    
+
       <table width="100%">
         <tr><td align="center"><br>{$forms.customFieldsForm.btn_add.control}</td></tr>
-         </table>
-      {/if}
+      </table>
+{/if}
     </td>
   </tr>
 </table>
-{$forms.customFieldsForm.close}
\ No newline at end of file
+{$forms.customFieldsForm.close}