diff options
author | Simon Rettberg | 2019-03-07 13:29:48 +0100 |
---|---|---|
committer | Simon Rettberg | 2019-03-07 13:29:48 +0100 |
commit | 35078669abfbe296b578b3f131a30dcb38ed99f5 (patch) | |
tree | 2b1ee1010ce9605007bf0cc95e80ed9767843212 /modules-available/locationinfo/templates/page-server-log.html | |
parent | [locationinfo] Fix form<->button relation (delete, check, etc.) (diff) | |
download | slx-admin-35078669abfbe296b578b3f131a30dcb38ed99f5.tar.gz slx-admin-35078669abfbe296b578b3f131a30dcb38ed99f5.tar.xz slx-admin-35078669abfbe296b578b3f131a30dcb38ed99f5.zip |
[locationinfo] Add error log for backends
Diffstat (limited to 'modules-available/locationinfo/templates/page-server-log.html')
-rw-r--r-- | modules-available/locationinfo/templates/page-server-log.html | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/modules-available/locationinfo/templates/page-server-log.html b/modules-available/locationinfo/templates/page-server-log.html new file mode 100644 index 00000000..7fc3b997 --- /dev/null +++ b/modules-available/locationinfo/templates/page-server-log.html @@ -0,0 +1,17 @@ +<h2>{{lang_serverLogHead}}</h2> +<h3>{{servername}}</h3> + +<table class="table table-striped table-condensed"> + <thead> + <th class="text-center slx-smallcol">{{lang_when}}</th> + <th class="text-center">{{lang_event}}</th> + </thead> + <tbody> + {{#list}} + <tr> + <td class="text-center" nowrap="nowrap">{{dateline_s}}</td> + <td class="{{class}}">{{message}}</td> + </tr> + {{/list}} + </tbody> +</table>
\ No newline at end of file |