mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-28 23:59:57 +09:00
git-svn-id: http://xe-core.googlecode.com/svn/trunk@1379 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
5670726210
commit
d0b03467f9
7 changed files with 81 additions and 7 deletions
59
modules/member/tpl/mailing_list.html
Normal file
59
modules/member/tpl/mailing_list.html
Normal file
|
|
@ -0,0 +1,59 @@
|
|||
<!--#include("header.html")-->
|
||||
<!--%import("filter/insert_denied_id.xml")-->
|
||||
<!--%import("filter/update_denied_id.xml")-->
|
||||
|
||||
<!-- 정보 -->
|
||||
<div>
|
||||
{number_format($total_count)},
|
||||
{$lang->page_count} : {number_format($page)} / {number_format($total_page)}
|
||||
</div>
|
||||
|
||||
<!-- 목록 -->
|
||||
<div>
|
||||
<table border="1">
|
||||
<tr>
|
||||
<th>{$lang->no}</th>
|
||||
<th>{$lang->title}</th>
|
||||
<th>{$lang->regdate}</th>
|
||||
<th>{$lang->send_start_date}</th>
|
||||
<th>{$lang->send_finish_date}</th>
|
||||
<th>{$lang->sended_count}</th>
|
||||
<th>{$lang->cmd_send}</th>
|
||||
</tr>
|
||||
<!--@foreach($member_list as $no => $val)-->
|
||||
<tr>
|
||||
<td>{$no}</td>
|
||||
<td><a href="#" onclick="location.href='{getUrl('act','dispMemberAdminInsertMailing','mailing_srl',$val->mailing_srl)}';return false;">{$val->title}</a></td>
|
||||
<td>{zdate($val->regdate,"Y-m-d")}</td>
|
||||
<td>{zdate($val->send_start_date,"Y-m-d")}</td>
|
||||
<td>{zdate($val->send_finish_date,"Y-m-d")}</td>
|
||||
<td>{number_format($val->sended_count)}</td>
|
||||
<td>
|
||||
<!--@if(!$val->send_finish_date)-->
|
||||
<a href="#">{$lang->cmd_send}</a>
|
||||
<!--@end-->
|
||||
</td>
|
||||
</tr>
|
||||
<!--@end-->
|
||||
</table>
|
||||
</div>
|
||||
|
||||
<!-- 페이지 네비게이션 -->
|
||||
<div>
|
||||
<a href="{getUrl('page','','mailing_srl','')}">[{$lang->first_page}]</a>
|
||||
|
||||
<!--@while($page_no = $page_navigation->getNextPage())-->
|
||||
<!--@if($page == $page_no)-->
|
||||
{$page_no}
|
||||
<!--@else-->
|
||||
<a href="{getUrl('page',$page_no,'mailing_srl','')}">[{$page_no}]</a>
|
||||
<!--@end-->
|
||||
<!--@end-->
|
||||
|
||||
<a href="{getUrl('page',$page_navigation->last_page,'mailing_srl','')}">[{$lang->last_page}]</a>
|
||||
</div>
|
||||
|
||||
<!-- 작성 버튼 -->
|
||||
<div>
|
||||
[<a href="#" onclick="location.href='{getUrl('act','dispMemberAdminInsertMailing')}';return false;">{$lang->cmd_make}</a>]
|
||||
</div>
|
||||
Loading…
Add table
Add a link
Reference in a new issue