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/emails/email.user_complaint.tpl
Denis Shakhov 9afb2fe21b Подготовка компонентов к переносу
Относительные пути в extend'ах заменены на независимые вида component@name.template
2015-01-29 13:41:05 +07:00

16 lines
542 B
Smarty

{**
* Жалоба
*}
{extends 'Component@email.email'}
{block 'content'}
{lang name='emails.user_complaint.text' params=[
'user_url' => $oUserFrom->getUserWebPath(),
'user_name' => $oUserFrom->getDisplayName(),
'user_target_url' => $oUserTarget->getUserWebPath(),
'user_target_name' => $oUserTarget->getDisplayName(),
'complaint_title' => $oComplaint->getTypeTitle(),
'complaint_text' => "{if $oComplaint->getText()}{lang name='emails.user_changemail.more'}:<br>{$oComplaint->getText()}{/if}"
]}
{/block}