summaryrefslogtreecommitdiffstats
path: root/modules-available/statistics/templates/projector-list.html
diff options
context:
space:
mode:
Diffstat (limited to 'modules-available/statistics/templates/projector-list.html')
-rw-r--r--modules-available/statistics/templates/projector-list.html21
1 files changed, 21 insertions, 0 deletions
diff --git a/modules-available/statistics/templates/projector-list.html b/modules-available/statistics/templates/projector-list.html
new file mode 100644
index 00000000..bc9ecdbd
--- /dev/null
+++ b/modules-available/statistics/templates/projector-list.html
@@ -0,0 +1,21 @@
+<div class="panel panel-default">
+ <div class="panel-heading">{{lang_projectors}}</div>
+ <div class="panel-body">
+ <form method="post" action="?do=statistics" id="delprojector">
+ <input type="hidden" name="token" value="{{token}}">
+ <input type="hidden" name="action" value="delprojector">
+ <p>{{lang_thoseAreProjectors}}</p>
+ {{#projectors}}
+ <div>
+ <button type="submit" name="hwid" value="{{hwid}}" class="btn btn-danger">
+ <span class="glyphicon glyphicon-remove"></span>
+ </button>
+ {{hwname}}
+ </div>
+ {{/projectors}}
+ {{^projectors}}
+ <div class="alert alert-info">{{lang_noProjectorsDefined}}</div>
+ {{/projectors}}
+ </form>
+ </div>
+</div> \ No newline at end of file