summaryrefslogtreecommitdiffstats
path: root/templates/page-syslog.html
diff options
context:
space:
mode:
authorSimon Rettberg2013-11-27 19:23:45 +0100
committerSimon Rettberg2013-11-27 19:23:45 +0100
commit2370dbbbddfcbee9e69e1133d78b9992118682bc (patch)
treea235d8e76c2f26473566f69191dc1f5d2b27a987 /templates/page-syslog.html
parentAdd gzip compression to output (diff)
downloadslx-admin-2370dbbbddfcbee9e69e1133d78b9992118682bc.tar.gz
slx-admin-2370dbbbddfcbee9e69e1133d78b9992118682bc.tar.xz
slx-admin-2370dbbbddfcbee9e69e1133d78b9992118682bc.zip
Added client log feature/view
Diffstat (limited to 'templates/page-syslog.html')
-rw-r--r--templates/page-syslog.html27
1 files changed, 27 insertions, 0 deletions
diff --git a/templates/page-syslog.html b/templates/page-syslog.html
new file mode 100644
index 00000000..b7e4c98e
--- /dev/null
+++ b/templates/page-syslog.html
@@ -0,0 +1,27 @@
+<div class="container">
+ <h1>Client Log</h1>
+ <table class="table table-striped">
+ <thead>
+ <th></th>
+ <th>Wann</th>
+ <th>Client</th>
+ <th>Ereignis</th>
+ <th>Details</th>
+ </thead>
+ <tbody>
+ {{#list}}
+ <tr>
+ <td><span class="glyphicon glyphicon-off"></span></td>
+ <td class="text-right" nowrap="nowrap">{{date}}</td>
+ <td>{{clientip}}</td>
+ <td>{{description}}</td>
+ <td>{{#extra}}<a class="btn btn-default btn-xs pull-left" data-toggle="collapse" data-target="#extra{{logid}}">&raquo;</a>{{/extra}}</td>
+ </tr>
+ <tr class="collapse" id="extra{{logid}}">
+ <td colspan="5"><pre>{{extra}}</pre></td>
+ </tr>
+ {{/list}}
+ </tbody>
+ </table>
+</div>
+