1
0
Fork 0
mirror of https://github.com/Oreolek/ifhub.club.git synced 2024-07-16 21:34:25 +03:00
ifhub.club/application/frontend/skin/developer/components/vote/vote.info.tpl
Denis Shakhov 4f222aaa25 Доработка компонентов
* Часть компонентов перенесена в папку components
* Из лок-ии убраны лишнии текстовки
* Переписан модуль vote.js с использованием jquery widget factory
* Мелкие доработки и исправления
2014-04-08 18:42:07 +07:00

15 lines
544 B
Smarty
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{**
* Информация о голосовании
*}
{* Название компонента *}
{$_sComponentName = 'vote'}
<ul class="{$_sComponentName}-info">
<li><i class="icon-plus icon-white"></i> {$oObject->getCountVoteUp()}</li>
<li><i class="icon-minus icon-white"></i> {$oObject->getCountVoteDown()}</li>
<li><i class="icon-eye-open icon-white"></i> {$oObject->getCountVoteAbstain()}</li>
<li><i class="icon-asterisk icon-white"></i> {$oObject->getCountVote()}</li>
{hook run='topic_show_vote_stats' topic=$oObject}
</ul>