WebDAV-Liste analog zu anderen Tabellen stylen
authorMoritz Bunkus <m.bunkus@linet-services.de>
Wed, 20 Apr 2016 09:02:51 +0000 (11:02 +0200)
committerMoritz Bunkus <m.bunkus@linet-services.de>
Wed, 20 Apr 2016 09:02:51 +0000 (11:02 +0200)
templates/webpages/webdav/_list.html

index 2f84d52..58f2d29 100644 (file)
@@ -4,18 +4,22 @@
 <div id="ui-tabs-webdav">
 <div class="listtop">[%- 'Documents in the WebDAV repository' | $T8 %]</div>
 
- <table width="100%">
-  <tr>
-   <td align="left" width="30%"><b>[% 'File name' | $T8 %]</b></td>
-   <td align="left" width="70%"><b>[% 'WebDAV link' | $T8 %]</b></td>
-  </tr>
+ <table>
+  <thead>
+   <tr class="listheading">
+    <td>[% 'File name' | $T8 %]</td>
+    <td>[% 'WebDAV link' | $T8 %]</td>
+   </tr>
+  </thead>
 
+  <tbody>
 [%- FOREACH file = WEBDAV %]
-  <tr>
-   <td align="left">[% HTML.escape(file.name) %]</td>
-   <td align="left"><a href="[% HTML.escape(file.link) %]">[% HTML.escape(file.type) %]</a></td>
-  </tr>
+   <tr class="listrow">
+    <td>[% HTML.escape(file.name) %]</td>
+    <td><a href="[% HTML.escape(file.link) %]">[% HTML.escape(file.type) %]</a></td>
+   </tr>
 [%- END %]
+  </tbody>
  </table>
 </div>