diff options
author | zotlabs <mike@macgirvin.com> | 2017-05-02 12:46:50 -0700 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2017-05-02 12:46:50 -0700 |
commit | 80ec92ce8d9f615eeb06d92b67ad1ff840cad0cc (patch) | |
tree | 484f2101b78ae16f397310470b7e30f2c03d7b57 /view/theme/redbasic/tpl/acl_selector.tpl | |
parent | 83c4dd6bda1677a3441d06247ea076094394703e (diff) | |
download | volse-hubzilla-80ec92ce8d9f615eeb06d92b67ad1ff840cad0cc.tar.gz volse-hubzilla-80ec92ce8d9f615eeb06d92b67ad1ff840cad0cc.tar.bz2 volse-hubzilla-80ec92ce8d9f615eeb06d92b67ad1ff840cad0cc.zip |
Revert "move theme specific files to theme dir"
This reverts commit e332d1074f1b663ec66d37b0f575df2e41d5535c.
Diffstat (limited to 'view/theme/redbasic/tpl/acl_selector.tpl')
-rwxr-xr-x | view/theme/redbasic/tpl/acl_selector.tpl | 64 |
1 files changed, 0 insertions, 64 deletions
diff --git a/view/theme/redbasic/tpl/acl_selector.tpl b/view/theme/redbasic/tpl/acl_selector.tpl deleted file mode 100755 index f4f851c8a..000000000 --- a/view/theme/redbasic/tpl/acl_selector.tpl +++ /dev/null @@ -1,64 +0,0 @@ -<form> -<div class="modal" id="aclModal"> - <div class="modal-dialog"> - <div class="modal-content"> - <div class="modal-header"> - <h4 class="modal-title"> - <i id="dialog-perms-icon" class="fa fa-fw"></i> {{$aclModalTitle}} - {{if $helpUrl}} - <a target="hubzilla-help" href="{{$helpUrl}}" class="contextual-help-tool" title="Help and documentation"><i class="fa fa-fw fa-question"></i></a> - {{/if}} - </h4> - <button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button> - </div> - <div class="section-content-wrapper"> - {{if $aclModalDesc}} - <div id="acl-dialog-description" class="section-content-info-wrapper">{{$aclModalDesc}}</div> - {{/if}} - <label for="acl-select">{{$select_label}}</label> - <select id="acl-select" name="optionsRadios" class="form-control form-group"> - <option id="acl-showall" value="public" {{$public_selected}}>{{$showall}}</option> - {{$groups}} - <option id="acl-onlyme" value="onlyme" {{$justme_selected}}>{{$onlyme}}</option> - <option id="acl-custom" value="custom" {{$custom_selected}}>{{$custom}}</option> - </select> - - {{if $showallOrigin}} - <div id="acl-info" class="form-group"> - <i class="fa fa-info-circle"></i> {{$showallOrigin}} - </div> - {{/if}} - - <div id="acl-wrapper"> - <div id="acl-list"> - <input class="form-control" type="text" id="acl-search" placeholder=" {{$search}}"> - <small class="text-muted">{{$showlimitedDesc}}</small> - <div id="acl-list-content"></div> - </div> - </div> - - <div class="acl-list-item" rel="acl-template" style="display:none"> - <div class="acl-item-header"> - <img class="menu-img-1" data-src="{0}"> {1} - </div> - <button class="acl-button-hide btn btn-sm btn-outline-danger"><i class="fa fa-times"></i> {{$hide}}</button> - <button class="acl-button-show btn btn-sm btn-outline-success"><i class="fa fa-check"></i> {{$show}}</button> - </div> - </div> - <div class="modal-footer clear"> - <button type="button" class="btn btn-outline-secondary" data-dismiss="modal">{{$aclModalDismiss}}</button> - </div> - </div><!-- /.modal-content --> - </div><!-- /.modal-dialog --> -</div><!-- /.modal --> -</form> -<script> - // compatibility issue with bootstrap v4 - //$('[data-toggle="popover"]').popover(); // Init the popover, if present - - if(typeof acl=="undefined"){ - acl = new ACL( - baseurl+"/acl" - ); - } -</script> |