mirror of https://github.com/avecms/AVE.cms.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
613 B
33 lines
613 B
7 years ago
|
{if ! empty($field_value)}
|
||
|
<table class="table table-params table-no-border">
|
||
|
<tr>
|
||
|
<td class="table-header">
|
||
|
Документация
|
||
|
</td>
|
||
|
</tr>
|
||
|
|
||
|
{foreach from=$field_value item=list}
|
||
|
<tr>
|
||
|
<td>
|
||
|
<a href="{$list[1]}" target="_blank"><i class="fa fa-file-pdf-o"></i> {$list[0]}</a>
|
||
|
</td>
|
||
|
</tr>
|
||
|
{/foreach}
|
||
|
|
||
|
</table>
|
||
|
{else}
|
||
|
<table class="table table-params table-no-border">
|
||
|
<tr>
|
||
|
<td class="table-header">
|
||
|
Документация
|
||
|
</td>
|
||
|
</tr>
|
||
|
<tr>
|
||
|
<td>
|
||
|
<div class="alert alert-warning">
|
||
|
Нет файлов для скачивания
|
||
|
</div>
|
||
|
</td>
|
||
|
</tr>
|
||
|
</table>
|
||
|
{/if}
|