core/api/modules/foto_show/index.html

43 lines
2.2 KiB
HTML
Executable File
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{include file=$header h1=$foto[0].naim title=$foto[0].naim} {if ($smarty.session.user_id==$foto[0].user_id)}
<section class="container mb-3">
<div class="btn-group" role="group" aria-label="Basic example">
<button type="button" class="btn btn-outline-dark" data-link="/foto_edit_album/{$smarty.get.id}"><i class="fas fa-edit"></i> Изменить альбом</button>
<button type="button" class="btn btn-outline-dark" data-modal="#del-album"><i class="fas fa-trash"></i> Удалить альбом</button>
</div>
</section>
{/if}
<section class="container">
<div class="row">
<div class="col-xs col-sm col-md-4 col-lg-6 col-xl-6 col-xxl-6" style="margin:0px;padding:0px;">
<img src="" data-original="/img/albums/{$foto[0].user_id}/{$foto[0].album_id}/{$foto[0].img}.jpg" class="lazy" style="width: 100%;">
</div>
<div class="col-xs col-sm col-md-4 col-lg-6 col-xl-6 col-xxl-6" style="margin:0px;padding:15px;">
<p><b>Описание:</b></p>
<p>{$foto[0].opis|br}</p>
<p><b>Технические характеристики фото:</b></p>
<p>{$foto[0].t_info}</p>
<p><b>Дата съемки:</b></p>
<p>{$foto[0].data_s}</p>
{if $album[0].roznica==1}
<a href="#" id="by" class="btn btn-outline-dark mb-3" title="С вашего счета спишется эта сумма" data-id="{$smarty.get.id}">Купить оригинал {$cena} р.</a> {/if}
<div id="info">
</div>
</div>
</div>
</section>
<section class="container mt-3">
<h2 class="text-center">Другие фотографии из альбома</h2>
<div class="owl-carousel owl-theme mt-3">
{section name=customer loop=$foto_list} {if $foto_list[customer].id}
<div>
<a href="/foto_show/{$foto_list[customer].id}"><img src="/img/albums/{$foto_list[customer].user_id}/{$foto_list[customer].album_id}/{$foto_list[customer].img}.jpg"></a>
</div>
{/if} {/section}
</div>
<a href="/foto_album/{$foto[0].album_id}" class="btn btn-outline-dark mb-3">Открыть альбом</a>
</section>
{include file=$footer}