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/property/item.file.tpl

9 lines
485 B
Smarty

{$oValue=$oPropertyItem->getValue()}
<div class="property-list-item">
<div class="property-list-item-label">{$oPropertyItem->getTitle()}</div>
{if $oUserCurrent or !$oPropertyItem->getParam('access_only_auth')}
<a href="{router page="property/download"}{$oValue->getValueVarchar()}/">{$oValue->getValueForDisplay()}</a>
{else}
Для доступа к файлу <a href="#" class="js-modal-toggle-login">необходимо авторизоваться</a>
{/if}
</div>