2013-12-18 16:17:38 +01:00
|
|
|
|
2013-04-23 13:47:57 +02:00
|
|
|
<div id="acl-wrapper">
|
|
|
|
<input id="acl-search">
|
2015-08-08 22:30:43 +02:00
|
|
|
<a id="acl-showall">{{$showall}}</a>
|
2013-04-23 13:47:57 +02:00
|
|
|
<div id="acl-list">
|
|
|
|
<div id="acl-list-content">
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<span id="acl-fields"></span>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="acl-list-item" rel="acl-template" style="display:none">
|
|
|
|
<img data-src="{0}"><p>{1}</p>
|
2015-08-08 22:30:43 +02:00
|
|
|
<a class='acl-button-show'>{{$show}}</a>
|
|
|
|
<a class='acl-button-hide'>{{$hide}}</a>
|
2013-04-23 13:47:57 +02:00
|
|
|
</div>
|
|
|
|
|
2015-06-25 18:57:42 +02:00
|
|
|
{{if $networks}}
|
|
|
|
<hr style="clear:both"/>
|
2018-12-14 04:28:12 +01:00
|
|
|
<div id="profile-jot-email-label">{{$emailcc}}</div><input type="text" name="emailcc" id="profile-jot-email" title="{{$emtitle}}" />
|
2015-06-25 18:57:42 +02:00
|
|
|
<div id="profile-jot-email-end"></div>
|
2019-03-25 03:40:50 +01:00
|
|
|
|
|
|
|
{{if $jotnets_fields}}
|
|
|
|
{{if $jotnets_fields|count < 3}}
|
|
|
|
<div class="profile-jot-net">
|
|
|
|
{{else}}
|
|
|
|
<details class="profile-jot-net">
|
|
|
|
<summary>{{$jotnets_summary}}</summary>
|
|
|
|
{{/if}}
|
|
|
|
|
|
|
|
{{foreach $jotnets_fields as $jotnets_field}}
|
|
|
|
{{if $jotnets_field.type == 'checkbox'}}
|
|
|
|
{{include file="field_checkbox.tpl" field=$jotnets_field.field}}
|
|
|
|
{{elseif $jotnets_field.type == 'select'}}
|
|
|
|
{{include file="field_select.tpl" field=$jotnets_field.field}}
|
|
|
|
{{/if}}
|
|
|
|
{{/foreach}}
|
|
|
|
|
|
|
|
{{if $jotnets_fields|count >= 3}}
|
|
|
|
</details>
|
|
|
|
{{else}}
|
|
|
|
</div>
|
|
|
|
{{/if}}
|
|
|
|
{{/if}}
|
|
|
|
{{/if}}
|
2015-06-25 18:57:42 +02:00
|
|
|
|
2013-04-23 13:47:57 +02:00
|
|
|
<script>
|
|
|
|
$(document).ready(function() {
|
|
|
|
if(typeof acl=="undefined"){
|
|
|
|
acl = new ACL(
|
|
|
|
baseurl+"/acl",
|
2018-12-15 02:42:24 +01:00
|
|
|
[ {{$allowcid nofilter}},{{$allowgid nofilter}},{{$denycid nofilter}},{{$denygid nofilter}} ],
|
2016-02-03 14:03:00 +01:00
|
|
|
{{$features.aclautomention}},
|
2016-02-03 23:22:45 +01:00
|
|
|
{{if $APP->is_mobile}}true{{else}}false{{/if}}
|
2013-04-23 13:47:57 +02:00
|
|
|
);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|