summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: ff40683)
raw | patch | inline | side by side (parent: ff40683)
author | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Mon, 26 May 2008 14:04:09 +0000 (14:04 +0000) | ||
committer | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Mon, 26 May 2008 14:04:09 +0000 (14:04 +0000) |
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@11008 594d385d-05f5-0310-b6e9-bd551577e9d8
gosa-core/ihtml/themes/default/acl.tpl | patch | blob | history |
index 2b8856c927d24fb25965a9f967ebc997cdaf6a87..0c66f6ff4a503f22fb0172bb436d7d8b5c31572b 100644 (file)
{if $dialogState eq 'head'}
<h1>{t}Assigned ACL for current entry{/t}</h1>
{$aclList}
-<input type="submit" name="new_acl" value="{t}New ACL{/t}">
+
+
+{if $acl_createable}
+<input type="submit" name="new_acl" value="{t}New ACL{/t}" >
+{/if}
{/if}
{if $dialogState eq 'create'}
-<h1>{t}ACL type{/t} <select size="1" name="aclType" title="{t}Select an acl type{/t}" onChange="document.mainform.submit()">{html_options options=$aclTypes selected=$aclType}<option disabled> </option></select> {if $javascript eq 'false'}<input type="submit" value="{t}Apply{/t}" name="refresh">{/if}</h1>
+<h1>{t}ACL type{/t}
+ {if !$acl_writeable}
+ <select size="1" name="dummy_t" title="{t}Select an acl type{/t}" disabled>
+ {html_options options=$aclTypes selected=$aclType}
+ <option disabled> </option>
+ </select>
+ {else}
+ <select size="1" name="aclType" title="{t}Select an acl type{/t}" onChange="document.mainform.submit()">
+ {html_options options=$aclTypes selected=$aclType}
+ <option disabled> </option>
+ </select>
+ {if $javascript eq 'false'}
+ <input type="submit" value="{t}Apply{/t}" name="refresh">
+ {/if}
+ {/if}
+</h1>
<p class="seperator"> </p>
<div style='padding:3px;'>
-{t}Additional filter options{/t} <input type='text' value='{$aclFilter}' name='aclFilter' style='width:600px;'>
+{t}Additional filter options{/t}
+ {if !$acl_writeable}
+ <input type='text' value='{$aclFilter}' disabled name='dummy_f' style='width:600px;'>
+ {else}
+ <input type='text' value='{$aclFilter}' name='aclFilter' style='width:600px;'>
+ {/if}
</div>
<table style="width:100%">
<tr>
<td style="width:48%">
{t}Available members{/t}<br>
+ {if !$acl_writeable}
+ <select style="width:100%;height:180px;" disabled name="dummy_s[]" size="20" multiple title="{t}List message possible targets{/t}">
+ {html_options options=$sources}
+ <option disabled> </option>
+ </select>
+ {else}
<select style="width:100%;height:180px;" name="source[]" size="20" multiple title="{t}List message possible targets{/t}">
{html_options options=$sources}
<option disabled> </option>
</select>
+ {/if}
</td>
<td style="vertical-align:center; text-align:center">
+ {if $acl_writeable}
<input type="submit" value=">" name="add">
<br><br>
<input type="submit" value="<" name="del">
+ {/if}
</td>
<td style="width:48%; vertical-align:top;">
{t}Members{/t}<br>
+ {if !$acl_writeable}
+ <select style="width:100%;height:180px;" disabled name="dummy_r[]" size="20" multiple title="{t}List message recipients{/t}">
+ {html_options options=$recipients}
+ <option disabled> </option>
+ </select>
+
+ {else}
<select style="width:100%;height:180px;" name="recipient[]" size="20" multiple title="{t}List message recipients{/t}">
{html_options options=$recipients}
<option disabled> </option>
</select>
+ {/if}
</td>
</tr>
</table>
<p class="seperator"> </p>
<div style='text-align:right;margin-top:5px'>
+ {if $acl_writeable}
<input type="submit" name="submit_new_acl" value="{t}Apply{/t}">
+ {/if}
<input type="submit" name="cancel_new_acl" value="{t}Cancel{/t}">
</div>
{/if}