15 lines
760 B
HTML
15 lines
760 B
HTML
|
{include file=$header_admin title="Новые коментарии"}
|
||
|
{section name=customer loop=$comments}
|
||
|
{if $comments[customer].id}
|
||
|
<div id="com_{$comments[customer].id}" style="border: 1px solid lightgray;border-radius: 3px; margin-top: 5px; width: 100%;padding: 10px;">
|
||
|
{$comments[customer].txt|b64}
|
||
|
<div style="width: 100%;">
|
||
|
</div>
|
||
|
<div class="btn-group" role="group" aria-label="Basic example">
|
||
|
<button type="button" class="btn btn-danger btn-del" data-id="{$comments[customer].id}">Удалить</button>
|
||
|
<button type="button" class="btn btn-success btn-ok" data-id="{$comments[customer].id}">Опубликовать</button>
|
||
|
</div>
|
||
|
</div>
|
||
|
{/if}
|
||
|
{/section}
|
||
|
{include file=$footer_admin}
|