]> git.mxchange.org Git - friendica.git/blob - view/acl_selector.tpl
e2b85e36bc294ce554b4b31a6dbfc53c13e39f4e
[friendica.git] / view / acl_selector.tpl
1 <div id="acl-wrapper">
2         <input id="acl-search">
3         <a href="#" id="acl-showall">$showall</a>
4         <div id="acl-list">
5                 <div id="acl-list-content">
6                 </div>
7         </div>
8         <span id="acl-fields"></span>
9 </div>
10
11 <div class="acl-list-item" rel="acl-template" style="display:none">
12         <a href="#" class='acl-button-show'>$show</a>
13         <a href="#" class='acl-button-hide'>$hide</a>
14 </div>
15
16 <script>
17 $(document).ready(function() {
18         if(typeof acl=="undefined"){
19                 acl = new ACL(
20                         baseurl+"/acl",
21                         [ $allowcid,$allowgid,$denycid,$denygid ]
22                 );
23         }
24 });
25 </script>