openvk/Web/Presenters/templates/Photos/CreateAlbum.xml

44 lines
1.4 KiB
XML
Raw Normal View History

2020-06-07 19:04:43 +03:00
{extends "../@layout.xml"}
2022-08-09 09:37:08 +03:00
{block title}{_creating_album}{/block}
2020-06-07 19:04:43 +03:00
{block header}
{ifset $club}
<a href="{$club->getURL()}">{$club->getName()}</a>
»
2022-08-09 09:37:08 +03:00
<a href="/albums{$club->getId() * -1}">{_albums}</a>
2020-06-07 19:04:43 +03:00
{else}
<a href="{$thisUser->getURL()}">{$thisUser->getCanonicalName()}</a>
»
2022-08-09 09:37:08 +03:00
<a href="/albums{$thisUser->getId()}">{_albums}</a>
2020-06-07 19:04:43 +03:00
{/ifset}
»
2022-08-09 09:37:08 +03:00
{_creating_album}
2020-06-07 19:04:43 +03:00
{/block}
{block content}
2020-07-13 06:55:45 +03:00
<div class="container_gray">
2022-08-09 09:37:08 +03:00
<h4>{_creating_album}</h4>
2020-06-07 19:04:43 +03:00
<form method="post" enctype="multipart/form-data">
2020-07-13 06:55:45 +03:00
<table cellspacing="7" cellpadding="0" width="60%" border="0" align="center">
2020-06-07 19:04:43 +03:00
<tbody>
<tr>
2022-08-09 09:37:08 +03:00
<td width="120" valign="top"><span class="nobold">{_name}:</span></td>
2020-06-07 19:04:43 +03:00
<td><input type="text" name="name" /></td>
</tr>
<tr>
2022-08-09 09:37:08 +03:00
<td width="120" valign="top"><span class="nobold">{_description}:</span></td>
2020-07-13 06:55:45 +03:00
<td><textarea name="desc"></textarea></td>
2020-06-07 19:04:43 +03:00
</tr>
<tr>
<td width="120" valign="top"></td>
<td>
<input type="hidden" name="hash" value="{$csrfToken}" />
2022-08-09 09:37:08 +03:00
<input type="submit" class="button" name="submit" value="{_create}" />
2020-06-07 19:04:43 +03:00
</td>
</tr>
</tbody>
</table>
</form>
2020-07-13 06:55:45 +03:00
</div>
2020-06-07 19:04:43 +03:00
{/block}