summaryrefslogtreecommitdiffstats
path: root/modules-available/eventlog
diff options
context:
space:
mode:
authorChristian Hofmaier2017-09-29 13:36:54 +0200
committerChristian Hofmaier2017-09-29 13:36:54 +0200
commit5f6e43734d8fb60b74e47b91f81adac41ae69597 (patch)
tree1189b1fc32890ace80e76dedd6b904f56c932c99 /modules-available/eventlog
parent[statistics] fixed inconsistencies (diff)
downloadslx-admin-5f6e43734d8fb60b74e47b91f81adac41ae69597.tar.gz
slx-admin-5f6e43734d8fb60b74e47b91f81adac41ae69597.tar.xz
slx-admin-5f6e43734d8fb60b74e47b91f81adac41ae69597.zip
[baseconfig][baseconfig_partitions_cdn][eventlog][minilinux][permissionmanager][rebootcontrol][statisics_reporting][syslog] fixed inconsistencies
Diffstat (limited to 'modules-available/eventlog')
-rw-r--r--modules-available/eventlog/lang/de/module.json2
-rw-r--r--modules-available/eventlog/lang/en/module.json2
-rw-r--r--modules-available/eventlog/templates/_page.html13
3 files changed, 7 insertions, 10 deletions
diff --git a/modules-available/eventlog/lang/de/module.json b/modules-available/eventlog/lang/de/module.json
index 8217fc02..61ce4d0f 100644
--- a/modules-available/eventlog/lang/de/module.json
+++ b/modules-available/eventlog/lang/de/module.json
@@ -1,3 +1,3 @@
{
- "module_name": "Server-Log"
+ "module_name": "Event Log"
} \ No newline at end of file
diff --git a/modules-available/eventlog/lang/en/module.json b/modules-available/eventlog/lang/en/module.json
index 0fc536f3..61ce4d0f 100644
--- a/modules-available/eventlog/lang/en/module.json
+++ b/modules-available/eventlog/lang/en/module.json
@@ -1,3 +1,3 @@
{
- "module_name": "Server Log"
+ "module_name": "Event Log"
} \ No newline at end of file
diff --git a/modules-available/eventlog/templates/_page.html b/modules-available/eventlog/templates/_page.html
index 2e657805..0875664e 100644
--- a/modules-available/eventlog/templates/_page.html
+++ b/modules-available/eventlog/templates/_page.html
@@ -3,18 +3,18 @@
<table class="table table-striped table-condensed">
<thead>
<th width="1"></th>
- <th>{{lang_when}}</th>
- <th>{{lang_event}}</th>
+ <th class="text-center">{{lang_when}}</th>
+ <th class="text-center">{{lang_event}}</th>
<th width="1">{{lang_details}}</th>
</thead>
<tbody>
{{#list}}
<tr>
<td><span class="glyphicon glyphicon-{{icon}}" title="{{logtypeid}}"></span></td>
- <td class="text-right" nowrap="nowrap">{{date}}</td>
+ <td class="text-center" nowrap="nowrap">{{date}}</td>
<td class="{{color}}">{{description}}</td>
- <td>{{#extra}}
- <a class="btn btn-default btn-xs pull-left" onclick="$('#details-body').html($('#extra-{{logid}}').html())" data-toggle="modal" data-target="#myModal">&raquo;</a>
+ <td class="text-center">{{#extra}}
+ <a class="btn btn-default btn-xs" onclick="$('#details-body').html($('#extra-{{logid}}').html())" data-toggle="modal" data-target="#myModal">&raquo;</a>
<div class="hidden" id="extra-{{logid}}">{{extra}}</div>
{{/extra}}</td>
</tr>
@@ -33,9 +33,6 @@
<div class="modal-body">
<pre id="details-body"></pre>
</div>
- <div class="modal-footer">
- <button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
- </div>
</div>
</div>
</div>