source: extensions/AMenuManager/admin/amm_sections_visibility.tpl @ 5421

Last change on this file since 5421 was 4395, checked in by grum, 14 years ago

[AMM] feature 1299, feature 1298, feature 1297
Allows to manage access for the 'Admin' users
Users 'Webmaster' aren't managed
AMM don't works properly if a block 'menu' or 'specials' is hidden

  • Property svn:executable set to *
File size: 508 bytes
Line 
1<h3>{'user'|@translate}</h3>
2<p>
3{foreach from=$users item=values}
4  <label>
5  <input type="checkbox" id="i{$name}_vis_user_{$values.id}" value="{$values.id}"
6    {if $values.allowed==true} checked{/if} />{$values.name}
7  </label><br/>
8{/foreach}
9</p>
10
11<h3>{'Group'|@translate}</h3>
12<p>
13{foreach from=$groups item=values}
14  <label>
15  <input type="checkbox" id="i{$name}_vis_group_{$values.id}" value="{$values.id}"
16    {if $values.allowed==true} checked{/if} />{$values.name}
17  </label><br/>
18{/foreach}
19</p>
Note: See TracBrowser for help on using the repository browser.