]> git.mxchange.org Git - friendica.git/blob - view/acl_selector.tpl
added test blueprints, fixed? encoding issues
[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         <img src="{0}"><p>{1}</p>
13         <a href="#" class='acl-button-show'>$show</a>
14         <a href="#" class='acl-button-hide'>$hide</a>
15 </div>
16
17 <script>
18 $(document).ready(function() {
19         if(typeof acl=="undefined"){
20                 acl = new ACL(
21                         baseurl+"/acl",
22                         [$allowcid,$allowgid,$denycid,$denygid]
23                 );
24         }
25 });
26 </script>