Revision 8ff86718
Von Hans P. Schlaepfer vor mehr als 4 Jahren hinzugefügt
templates/webpages/webdav/_list.html | ||
---|---|---|
[% USE T8 %]
|
||
[% USE LxERP %]
|
||
|
||
[%- IF INSTANCE_CONF.get_webdav %]
|
||
<div id="ui-tabs-webdav">
|
||
<div class="listtop">[%- 'Documents in the WebDAV repository' | $T8 %]</div>
|
||
[% IF INSTANCE_CONF.get_webdav %]
|
||
<div id="ui-tabs-webdav" class="ui-tabs-panel" style="display:none;">
|
||
|
||
[% IF WEBDAV && WEBDAV.size %]
|
||
<table>
|
||
<thead>
|
||
<tr class="listheading">
|
||
<th>[% 'File name' | $T8 %]</th>
|
||
<th>[% 'WebDAV link' | $T8 %]</th>
|
||
</tr>
|
||
</thead>
|
||
<div class="wrapper">
|
||
|
||
<tbody>
|
||
[%- FOREACH file = WEBDAV %]
|
||
<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>
|
||
<h3>[% 'Documents in the WebDAV repository' | $T8 %]</h3>
|
||
|
||
[% ELSE %]
|
||
<p>[% LxERP.t8("There are no documents in the WebDAV directory at the moment.") %]</p>
|
||
[% END %]
|
||
</div>
|
||
[% IF WEBDAV && WEBDAV.size %]
|
||
<table class="tbl-list wi-moderate">
|
||
<thead>
|
||
<tr>
|
||
<th>[% 'File name' | $T8 %]</th>
|
||
<th>[% 'WebDAV link' | $T8 %]</th>
|
||
</tr>
|
||
</thead>
|
||
<tbody>
|
||
[% FOREACH file = WEBDAV %]
|
||
<tr>
|
||
<td>[% HTML.escape(file.name) %]</td>
|
||
<td><a href="[% HTML.escape(file.link) %]">[% HTML.escape(file.type) %]</a></td>
|
||
</tr>
|
||
[% END %]
|
||
</tbody>
|
||
</table>
|
||
|
||
[% ELSE %]
|
||
<p>[% LxERP.t8("There are no documents in the WebDAV directory at the moment.") %]</p>
|
||
[% END %]
|
||
|
||
[%- END %]
|
||
</div><!-- /.wrapper -->
|
||
|
||
</div><!-- /#ui-tabs-webdav -->
|
||
[% END %]
|
Auch abrufbar als: Unified diff
Neues Design 2019 Standard-Code templates/webpages/webdav/_list.html