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

HEAD
Last change on this file since d901205 was d901205, checked in by Aleksander Machniak <alec@…>, 11 months ago

Moved advanced switch into table actions menu - fixed css issue in Larry skin

  • Property mode set to 100644
File size: 1.8 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</div>
8</div>
9
10<div id="aclmenu" class="popupmenu">
11    <ul class="toolbarmenu selectable">
12        <li><roundcube:button command="acl-edit" label="edit" classAct="active" /></li>
13        <li><roundcube:button command="acl-delete" label="delete" classAct="active" /></li>
14        <roundcube:if condition="!in_array('acl_advanced_mode', (array)config:dont_override)" />
15            <li><roundcube:button name="acl-switch" id="acl-switch" label="acl.advanced" onclick="rcmail.command('acl-mode-switch')" class="active" /></li>
16        <roundcube:endif />
17    </ul>
18</div>
19
20<div id="aclform" class="popupmenu propform">
21    <fieldset class="thinbordered"><legend><roundcube:label name="acl.identifier" /></legend>
22        <roundcube:object name="acluser" id="acluser" size="35" />
23    </fieldset>
24    <fieldset class="thinbordered"><legend><roundcube:label name="acl.myrights" /></legend>
25        <roundcube:object name="aclrights" />
26    </fieldset>
27    <div class="formbuttons">
28        <roundcube:button command="acl-cancel" type="input" class="button" label="cancel" />
29        <roundcube:button command="acl-save" type="input" class="button mainaction" label="save" />
30    </div>
31</div>
Note: See TracBrowser for help on using the repository browser.