1
0
Fork 0
mirror of https://github.com/Oreolek/ifhub.club.git synced 2024-07-05 07:54:24 +03:00
ifhub.club/application/frontend/skin/developer/components/field/field.file.tpl
2014-10-21 20:59:33 +07:00

26 lines
667 B
Smarty

{**
* Выбор файла
*}
{extends './field.tpl'}
{block 'field' prepend}
{$_mods = "$_mods file"}
{$uploadedFiles = $smarty.local.uploadedFiles}
{/block}
{block 'field_input'}
<input type="file" {field_input_attr_common} />
{if $uploadedFiles}
<div class="field-file-info">
{block 'field_file_info'}
<p>Загружен файл: <strong>{$uploadedFiles.name}.{$uploadedFiles.extension}</strong></p>
{/block}
<label>
<input type="checkbox" name="{$smarty.local.removeName}" value="1"> {lang 'common.remove'}
</label>
</div>
{/if}
{/block}