{**
* XS2:
*
* This file is developed by Solutecs, LLC for the purpose of the company
* and is provided together with XS2 Framework as and inherent part of the
* system. This file can be used on the terms of License Agreement.
*
* +7 (495) 585-0833 / 13 Rusakovskaya street, Moscow 107140 Russia
*
* @link http://www.solutecs.com
* @copyright ©1998-2007 Solutecs, LLC
* @version 1.XX
*}
<h1>{$question.NName}</h1>
{if not $voteSended}
{* Если пользователь еще не голосовал по этому вопросу *}
<FORM action="{$_THE.REQUEST_URI}" method="POST" name="voteSend">
<INPUT type="hidden" name="action" value="voteSend" />
{foreach from=$answers item="answer"}
<INPUT type="radio" value="{$answer.NodId}" name="answer" style="border: none;"/>
{$answer.NName}<BR/>
{/foreach}
<INPUT type="submit" value="Ответить">
</FORM>
<A href="{xs2Href mod="voting" obj="question" met="result" atr=$question.NodId}">результаты</A>
{else}
{* Если пользователь уже голосовал по этому вопросу, покажем результаты *}
{foreach from=$answers item="answer" name="ans"}
{$answer.NName} - {$answer.Counter} ({$answer.CounterPercent|default:"0"|string_format:"%.2f"}%)<BR/>
{/foreach}
Всего ответивших: {$sum}
{/if}
|
|