1
0
Fork 0
mirror of https://github.com/Oreolek/ifhub.club.git synced 2024-07-08 09:24:25 +03:00
ifhub.club/templates/skin/synio/modals/modal.photoset_add_photo.tpl
2013-04-07 02:06:48 +07:00

19 lines
758 B
Smarty

{extends file='modals/modal_base.tpl'}
{block name='id'}photoset-upload-form{/block}
{block name='class'}photoset-upload-form js-modal-default{/block}
{block name='title'}{$aLang.uploadimg}{/block}
{block name='content'}
<div id="topic-photo-upload-input" class="topic-photo-upload-input">
<label for="photoset-upload-file">{$aLang.topic_photoset_choose_image}:</label>
<input type="file" id="photoset-upload-file" name="Filedata" /><br><br>
<input type="hidden" name="is_iframe" value="true" />
<input type="hidden" name="topic_id" value="{$_aRequest.topic_id}" />
</div>
{/block}
{block name='footer'}
<button type="submit" class="button button-primary" onclick="ls.photoset.upload();">{$aLang.topic_photoset_upload_choose}</button>
{/block}