Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'apps/settings/js/templates/federationscopemenu.handlebars')
-rw-r--r--apps/settings/js/templates/federationscopemenu.handlebars17
1 files changed, 17 insertions, 0 deletions
diff --git a/apps/settings/js/templates/federationscopemenu.handlebars b/apps/settings/js/templates/federationscopemenu.handlebars
new file mode 100644
index 00000000000..4bd945b094d
--- /dev/null
+++ b/apps/settings/js/templates/federationscopemenu.handlebars
@@ -0,0 +1,17 @@
+<ul>
+ {{#each items}}
+ <li tabindex="0">
+ <a href="#" class="menuitem action action-{{name}} permanent {{#if active}}active{{/if}}" data-action="{{name}}">
+ {{#if iconClass}}
+ <span class="icon {{iconClass}}"></span>
+ {{else}}
+ <span class="no-icon"></span>
+ {{/if}}
+ <p>
+ <strong class="menuitem-text">{{displayName}}</strong><br>
+ <span class="menuitem-text-detail">{{tooltip}}</span>
+ </p>
+ </a>
+ </li>
+ {{/each}}
+</ul>