source: github/plugins/acl/skins/larry/templates/table.html @ 48e9c14

HEADcourier-fixdev-browser-capabilitiespdorelease-0.8
Last change on this file since 48e9c14 was 48e9c14, checked in by thomascube <thomas@…>, 14 months ago

Move plugins repository into roundcubemail root folder; svn:externals are not defined anymore

  • Property mode set to 100644
File size: 1.9 KB
Line 
1<div id="aclcontainer" class="uibox listbox">
2<div id="acllist-content" class="scroller withfooter">
3    <roundcube:object name="acltable" id="acltable" class="records-table" />
4</div>
5<div id="acllist-footer" class="boxfooter">
6    <roundcube:button command="acl-create" id="aclcreatelink" type="link" title="acl.newuser" class="listbutton add disabled" classAct="listbutton add" innerClass="inner" content="+" /><roundcube:button name="aclmenulink" id="aclmenulink" type="link" title="acl.actions" class="listbutton groupactions"onclick="UI.show_popup('aclmenu');return false" innerClass="inner" content="&#9881;" />
7    <roundcube:if condition="!in_array('acl_advanced_mode', (array)config:dont_override)" />
8        <span class="countdisplay" style="display: inline">
9        <label for="acl-switch"><roundcube:label name="acl.advanced" /></label>
10        <input type="checkbox" id="acl-switch" onclick="rcmail.command('acl-mode-switch')"<roundcube:exp expression="config:acl_advanced_mode == true ? ' checked=checked' : ''" /> />
11        </span>
12    <roundcube:endif />
13</div>
14</div>
15
16<div id="aclmenu" class="popupmenu">
17    <ul class="toolbarmenu">
18        <li><roundcube:button command="acl-edit" label="edit" classAct="active" /></li>
19        <li><roundcube:button command="acl-delete" label="delete" classAct="active" /></li>
20    </ul>
21</div>
22
23<div id="aclform" class="popupmenu propform">
24    <fieldset class="thinbordered"><legend><roundcube:label name="acl.identifier" /></legend>
25        <roundcube:object name="acluser" id="acluser" size="35" />
26    </fieldset>
27    <fieldset class="thinbordered"><legend><roundcube:label name="acl.myrights" /></legend>
28        <roundcube:object name="aclrights" />
29    </fieldset>
30    <div class="formbuttons">
31        <roundcube:button command="acl-cancel" type="input" class="button" label="cancel" />
32        <roundcube:button command="acl-save" type="input" class="button mainaction" label="save" />
33    </div>
34</div>
Note: See TracBrowser for help on using the repository browser.