aboutsummaryrefslogtreecommitdiffstats
path: root/ui/imports/ui/components/clique-types-list/clique-types-list.html
diff options
context:
space:
mode:
Diffstat (limited to 'ui/imports/ui/components/clique-types-list/clique-types-list.html')
-rw-r--r--ui/imports/ui/components/clique-types-list/clique-types-list.html56
1 files changed, 0 insertions, 56 deletions
diff --git a/ui/imports/ui/components/clique-types-list/clique-types-list.html b/ui/imports/ui/components/clique-types-list/clique-types-list.html
deleted file mode 100644
index e4badf9..0000000
--- a/ui/imports/ui/components/clique-types-list/clique-types-list.html
+++ /dev/null
@@ -1,56 +0,0 @@
-<!--
-########################################################################################
-# Copyright (c) 2017 Koren Lev (Cisco Systems), Yaron Yogev (Cisco Systems) and others #
-# #
-# All rights reserved. This program and the accompanying materials #
-# are made available under the terms of the Apache License, Version 2.0 #
-# which accompanies this distribution, and is available at #
-# http://www.apache.org/licenses/LICENSE-2.0 #
-########################################################################################
- -->
-<template name="CliqueTypesList">
-<div class="os-clique-types-list cards white">
- <h3>Clique Types</h3>
- <a class="sm-add-new-link"
- href="{{pathFor route='clique-type' query=(asHash action='insert') }}">
- <i class="cl-action-icon fa fa-plus" area-hidden="true"></i> Create new clique type
- </a>
- <table class="sm-clique-types-table table">
- <thead>
- <tr>
- <th>name</th>
- <th>Environment</th>
- <th>Focal Point Type</th>
- <th>Link Types</th>
- <th>Actions</th>
- </tr> </thead>
- <tbody>
- {{#each cliqueType in cliqueTypes }}
- <tr>
- <td>{{ cliqueType.name }}</td>
- <td>{{ cliqueType.environment }}</td>
- <td>{{ cliqueType.focal_point_type }}</td>
- <td>{{ cliqueType.link_types }}</td>
- <td>
- <div class="sm-action-bar">
- <a href="{{pathFor route='clique-type'
- query=(asHash id=(idToStr cliqueType._id) action='view') }}"
- ><i class="cl-action-icon fa fa-eye" area-hidden="true"></i></a>
-
- {{#if isAuthManageCliqueTypes }}
- <a href="{{pathFor route='clique-type'
- query=(asHash id=(idToStr cliqueType._id) action='update') }}"
- ><i class="cl-action-icon fa fa-pencil" area-hidden="true"></i></a>
-
- <a href="{{pathFor route='clique-type'
- query=(asHash id=(idToStr cliqueType._id) action='remove') }}"
- ><i class="cl-action-icon fa fa-trash-o" area-hidden="true"></i></a>
- {{/if }}
- </div>
- </td>
- </tr>
- {{/each }}
- </tbody>
- </table>
-</div>
-</template>