mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-29 08:09:58 +09:00
git-svn-id: http://xe-core.googlecode.com/svn/trunk@1005 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
c2209ea9b0
commit
160e9f5a65
6 changed files with 125 additions and 13 deletions
|
|
@ -1,2 +1,48 @@
|
|||
<!--%import("filter/poll.xml")-->
|
||||
haha
|
||||
<!--%import("css/poll.css")-->
|
||||
|
||||
<div class="poll_box">
|
||||
|
||||
<div class="poll_title_box">
|
||||
<div class="poll_total_count">
|
||||
{$lang->poll_total_count} : {number_format($poll->poll_count)}
|
||||
</div>
|
||||
<div class="poll_stop_date">
|
||||
{$lang->poll_stop_date} : {zdate($poll->stop_date, "Y-m-d H:i")}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!--@foreach($poll->poll as $poll_srl_index => $val)-->
|
||||
|
||||
<div class="poll_detail_box">
|
||||
<div class="title">{$poll_srl_index}. {$val->title} ({$val->poll_count})</div>
|
||||
<!--@foreach($val->item as $item_srl => $item)-->
|
||||
{@$_idx = $poll->poll_srl.'_'.$poll_srl_index.'_'.$item_srl}
|
||||
<!--@if($val->checkcount>1)-->
|
||||
{@$_type = "checkbox"}
|
||||
<!--@else-->
|
||||
{@$_type = "radio"}
|
||||
<!--@end-->
|
||||
|
||||
|
||||
<div class="item">
|
||||
<input type="{$_type}" id="poll_item_{$_idx}" /> <label for="poll_item_{$_idx}">{$item->title} ({$item->poll_count})</label>
|
||||
</div>
|
||||
<!--@end-->
|
||||
|
||||
<div class="checkcount">
|
||||
{$lang->poll_check_count} : {$val->checkcount}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!--@end-->
|
||||
|
||||
<div class="poll_button_area">
|
||||
<input type="submit" value="{$lang->cmd_apply_poll}" class="poll_button" />
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<pre>
|
||||
{@print_r($poll)}
|
||||
</pre>
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue