summaryrefslogtreecommitdiffstats
path: root/modules-available/dozmod/templates/actionlog-log.html
diff options
context:
space:
mode:
authorChristian Hofmaier2017-09-14 15:57:36 +0200
committerChristian Hofmaier2017-09-14 15:57:36 +0200
commitd7efef285bfef24739cc56cf7fad2bedf5fcd9dd (patch)
tree1334603c7466a97ebbd70b97fa863899888bd482 /modules-available/dozmod/templates/actionlog-log.html
parent[locations] fixed inconsistencies + small design changes (diff)
downloadslx-admin-d7efef285bfef24739cc56cf7fad2bedf5fcd9dd.tar.gz
slx-admin-d7efef285bfef24739cc56cf7fad2bedf5fcd9dd.tar.xz
slx-admin-d7efef285bfef24739cc56cf7fad2bedf5fcd9dd.zip
[dozmod] fixed inconsistencies + some issues in [internetaccess] and [news]
Diffstat (limited to 'modules-available/dozmod/templates/actionlog-log.html')
-rw-r--r--modules-available/dozmod/templates/actionlog-log.html84
1 files changed, 44 insertions, 40 deletions
diff --git a/modules-available/dozmod/templates/actionlog-log.html b/modules-available/dozmod/templates/actionlog-log.html
index 151d2545..0f84a4ec 100644
--- a/modules-available/dozmod/templates/actionlog-log.html
+++ b/modules-available/dozmod/templates/actionlog-log.html
@@ -1,41 +1,45 @@
-<table class="table table-striped table-bordered">
- <tr>
- <th class="text-nowrap">{{lang_when}}</th>
- {{#showActor}}
- <th class="text-nowrap">{{lang_user}}</th>
- {{/showActor}}
- {{#showTarget}}
- <th class="text-nowrap">{{lang_actionTarget}}</th>
- {{/showTarget}}
- <th class="text-nowrap">{{lang_event}}</th>
- </tr>
- {{#events}}
- <tr>
- <td class="text-nowrap">{{dateline_s}}</td>
- {{#showActor}}
- <td style="min-width:140px">
- {{#uuserid}}
- <a href="?do=dozmod&amp;section=actionlog&amp;action=showuser&amp;uuid={{uuserid}}">{{ulastname}}, {{ufirstname}}</a>
- {{/uuserid}}
- {{^uuserid}}
- {{lang_system}}
- {{/uuserid}}
- </td>
- {{/showActor}}
- {{#showTarget}}
- <td>
- {{#targeturl}}
- <a href="{{targeturl}}">{{targetname}}</a>
- {{/targeturl}}
- {{^targeturl}}
- {{targetname}}
- {{^targetname}}
- <span class="small">{{targetid}}</span>
- {{/targetname}}
- {{/targeturl}}
- </td>
- {{/showTarget}}
- <td>{{description}}</td>
- </tr>
- {{/events}}
+<table style="table-layout: fixed; width: 100%" class="table table-striped table-bordered stupidtable">
+ <thead>
+ <tr>
+ <th class="text-nowrap" data-sort="int">{{lang_when}}</th>
+ {{#showActor}}
+ <th class="text-nowrap" data-sort="string">{{lang_user}}</th>
+ {{/showActor}}
+ {{#showTarget}}
+ <th class="text-nowrap" data-sort="string">{{lang_actionTarget}}</th>
+ {{/showTarget}}
+ <th class="text-nowrap" data-sort="string">{{lang_event}}</th>
+ </tr>
+ </thead>
+ <tbody>
+ {{#events}}
+ <tr>
+ <td class="text-nowrap" data-sort-value="{{dateline}}">{{dateline_s}}</td>
+ {{#showActor}}
+ <td style="min-width:140px">
+ {{#uuserid}}
+ <a href="?do=dozmod&amp;section=actionlog&amp;action=showuser&amp;uuid={{uuserid}}">{{ulastname}}, {{ufirstname}}</a>
+ {{/uuserid}}
+ {{^uuserid}}
+ {{lang_system}}
+ {{/uuserid}}
+ </td>
+ {{/showActor}}
+ {{#showTarget}}
+ <td>
+ {{#targeturl}}
+ <a href="{{targeturl}}">{{targetname}}</a>
+ {{/targeturl}}
+ {{^targeturl}}
+ {{targetname}}
+ {{^targetname}}
+ <span class="small">{{targetid}}</span>
+ {{/targetname}}
+ {{/targeturl}}
+ </td>
+ {{/showTarget}}
+ <td style="word-wrap: break-word">{{description}}</td>
+ </tr>
+ {{/events}}
+ </tbody>
</table> \ No newline at end of file