1 [% USE HTML %][% USE T8 %][%- USE LxERP -%]
 
   3 [%- IF INSTANCE_CONF.get_webdav %]
 
   4 <div id="ui-tabs-webdav">
 
   5 <div class="listtop">[%- 'Documents in the WebDAV repository' | $T8 %]</div>
 
   7 [% IF WEBDAV && WEBDAV.size %]
 
  10    <tr class="listheading">
 
  11     <th>[% 'File name' | $T8 %]</th>
 
  12     <th>[% 'WebDAV link' | $T8 %]</th>
 
  17 [%- FOREACH file = WEBDAV %]
 
  19     <td>[% HTML.escape(file.name) %]</td>
 
  20     <td><a href="[% HTML.escape(file.link) %]">[% HTML.escape(file.type) %]</a></td>
 
  27  <p>[% LxERP.t8("There are no documents in the WebDAV directory at the moment.") %]</p>