5 [% IF INSTANCE_CONF.get_webdav %]
6 <div id="ui-tabs-webdav" class="ui-tabs-panel" style="display:none;">
10 <h3>[% 'Documents in the WebDAV repository' | $T8 %]</h3>
12 [% IF WEBDAV && WEBDAV.size %]
13 <table class="tbl-list wi-moderate">
16 <th>[% 'File name' | $T8 %]</th>
17 <th>[% 'WebDAV link' | $T8 %]</th>
21 [% FOREACH file = WEBDAV %]
23 <td>[% HTML.escape(file.name) %]</td>
24 <td><a href="[% HTML.escape(file.link) %]">[% HTML.escape(file.type) %]</a></td>
31 <p>[% LxERP.t8("There are no documents in the WebDAV directory at the moment.") %]</p>
34 </div><!-- /.wrapper -->
36 </div><!-- /#ui-tabs-webdav -->