58 lines
1.3 KiB
HTML
Executable File
58 lines
1.3 KiB
HTML
Executable File
{if $smarty.get.id>0}
|
||
<tr><td></td><td>
|
||
|
||
<i class="fa-solid fa-folder"></i>
|
||
<a href="/a_bib/{$info.category}" title="выше">..</a>
|
||
</td><td></td></tr>
|
||
{/if}
|
||
|
||
{section name=customer loop=$massiv}
|
||
|
||
<tr id="content_{$massiv[customer].id}">
|
||
<td></td>
|
||
<td>
|
||
|
||
|
||
{if $tip=="folder"}
|
||
<i class="fa-solid fa-folder"></i>
|
||
<a href="/a_bib/{$massiv[customer].id}">{$massiv[customer].title}</a>
|
||
{else}
|
||
<i class="fa-solid fa-file"></i>
|
||
<a href="/a_bib_edit/{$massiv[customer].id}">{$massiv[customer].title}</a>
|
||
{/if}
|
||
|
||
|
||
</td>
|
||
<td>
|
||
<a type="button" class="delСat" data-id="{$massiv[customer].id}"><i class="fa-solid fa-trash"></i></a>
|
||
|
||
|
||
</td>
|
||
</tr>
|
||
{/section}
|
||
|
||
|
||
{section name=customer loop=$books}
|
||
{assign var=dop value=$books[customer].json}
|
||
<tr id="books_{$books[customer].id}">
|
||
<td style="width: 110px;">
|
||
<img src="/api/img/gray/gif/gray.gif" data-original="/files/{$smarty.server.SERVER_NAME}/{$dop.fileBook}.jpg" class="lazy" style="width: 100px;">
|
||
</td>
|
||
|
||
<td>
|
||
|
||
|
||
|
||
<i class="fa-solid fa-file"></i>
|
||
<a href="/a_bib_edit/{$books[customer].id}">{$books[customer].title}</a>
|
||
|
||
|
||
|
||
</td>
|
||
<td>
|
||
<a type="button" class="delBook" data-id="{$books[customer].id}"><i class="fa-solid fa-trash"></i></a>
|
||
|
||
|
||
</td>
|
||
</tr>
|
||
{/section} |