core/api/modules/my-order/index.html

24 lines
1.1 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="Список ваших фотографий" title="Список ваших фотографий"}
<section class="container" style="padding-top: 10px;">
<h1 class="text-center">Список ваших фотографий:</h1>
</section>
<section class="container pb-3">
{if ($error)}
<div class="alert alert-danger" role="alert">
Произошла ошибка сверки платежей
</div>
{else}
<ul>
{section name=customer loop=$myfiles}
<li>
<a href="/img/my/{$my}/{$myfiles[customer]}" target="_blank">{$myfiles[customer]}</a>
</li>
{/section}
</ul>
<h2 class="text-center"><a href="/img/my/{$my}/foto.zip">Скачать одним файлом</a></h2> {/if}
<div class="alert alert-success" role="alert">
<p>Так же мы отправили ссылку для скачивания на вашу электронную почту!</p>
<small>Если вы не получили письмо, проверьте папку со спамом</small>
</div>
</section>
{include file=$footer}