rhymix/modules/counter/tpl/index.html

28 lines
1 KiB
HTML

<!--%import("js/counter_admin.js")-->
<!-- 일자를 옮기는 form -->
<form action="./" method="get" id="fo_counter">
<input type="hidden" name="module" value="{$module}" />
<input type="hidden" name="act" value="{$act}" />
<input type="hidden" name="selected_date" value="{$selected_date}" />
</form>
<!-- 전체현황 -->
<div>
<h3>{$lang->total_counter}</h3>
<ul>
<li>{$lang->unique_visitor} : {number_format($total_counter->unique_visitor)}</li>
<li>{$lang->pageview} : {number_format($total_counter->pageview)}</li>
</ul>
</div>
<!-- 선택된 일자 현황 -->
<div>
<h3><span id='str_selected_date'>{zdate($selected_date, "Y-m-d")}</span> <a href="#" onclick="open_calendar(null, '{$selected_date}', 'changeSelectedDate');return false;">{$lang->cmd_select_date}</a></h3>
<ul>
<li>{$lang->unique_visitor} : {number_format($selected_day_counter->unique_visitor)}</li>
<li>{$lang->pageview} : {number_format($selected_day_counter->pageview)}</li>
</ul>
</div>