58f2d29e24a7f59436798ec4742e14db11c8df34
[kivitendo-erp.git] / templates / webpages / webdav / _list.html
1 [% USE HTML %][% USE T8 %]
2
3 [%- IF INSTANCE_CONF.get_webdav %]
4 <div id="ui-tabs-webdav">
5 <div class="listtop">[%- 'Documents in the WebDAV repository' | $T8 %]</div>
6
7  <table>
8   <thead>
9    <tr class="listheading">
10     <td>[% 'File name' | $T8 %]</td>
11     <td>[% 'WebDAV link' | $T8 %]</td>
12    </tr>
13   </thead>
14
15   <tbody>
16 [%- FOREACH file = WEBDAV %]
17    <tr class="listrow">
18     <td>[% HTML.escape(file.name) %]</td>
19     <td><a href="[% HTML.escape(file.link) %]">[% HTML.escape(file.type) %]</a></td>
20    </tr>
21 [%- END %]
22   </tbody>
23  </table>
24 </div>
25
26 [%- END %]