1 | ({$inc_header|smarty:nodefaults}) |
---|
2 | ({ext_include file="inc_subnavi_adminSiteMember.tpl"}) |
---|
3 | ({assign var="page_name" value="ブラックリスト管理"}) |
---|
4 | ({ext_include file="inc_tree_adminSiteMember.tpl"}) |
---|
5 | </div> |
---|
6 | |
---|
7 | ({*ここまで:navi*}) |
---|
8 | |
---|
9 | ({if $msg})<p class="actionMsg">({$msg})</p>({/if}) |
---|
10 | <h2>ブラックリスト管理</h2> |
---|
11 | <div class="contents"> |
---|
12 | |
---|
13 | <ul class="description"> |
---|
14 | <li>ブラックリストに登録されたメンバーのSNSへのログイン・新規登録を制限する機能です。</li> |
---|
15 | <li>携帯個体識別番号(暗号化済)をキーにブラックリストに登録します。</li> |
---|
16 | </ul> |
---|
17 | |
---|
18 | <p id="itemAdd"><a href="?m=({$module_name})&a=page_({$hash_tbl->hash('blacklist_add','page')})">携帯個体識別番号をブラックリストに追加する</a></p> |
---|
19 | |
---|
20 | ({capture name="pager"}) |
---|
21 | <div class="listControl"> |
---|
22 | <p class="display"> |
---|
23 | ({$total_num})件中 ({$start_num})-({$end_num})件目を表示しています |
---|
24 | </p> |
---|
25 | <p class="listMove"> |
---|
26 | ({if $page_list})({foreach from=$page_list item=item})({if $page!=$item})<a href="?m=({$module_name})&a=page_({$hash_tbl->hash('blacklist','page')})&page=({$item})">({$item})</a>({else})<b>({$item})</b>({/if}) ({/foreach}) ({/if}) |
---|
27 | ({if $prev})<a href="?m=({$module_name})&a=page_({$hash_tbl->hash('blacklist','page')})&page=({$page-1})"><<前</a> ({/if}) |
---|
28 | ({if $next})<a href="?m=({$module_name})&a=page_({$hash_tbl->hash('blacklist','page')})&page=({$page+1})">次>></a>({/if}) |
---|
29 | </p> |
---|
30 | </div> |
---|
31 | ({/capture}) |
---|
32 | |
---|
33 | ({if $c_blacklist_list}) |
---|
34 | <div class="listControl" id="pager01"> |
---|
35 | ({$smarty.capture.pager|smarty:nodefaults}) |
---|
36 | </div> |
---|
37 | ({/if}) |
---|
38 | |
---|
39 | <table class="basicType2"> |
---|
40 | ({capture name="table_header"}) |
---|
41 | <tr> |
---|
42 | <th>ID</th> |
---|
43 | <th>携帯個体識別番号(暗号化済)</th> |
---|
44 | <th>該当するメンバー</th> |
---|
45 | <th>備考</th> |
---|
46 | <th>操作</th> |
---|
47 | </tr> |
---|
48 | ({/capture}) |
---|
49 | <thead> |
---|
50 | ({$smarty.capture.table_header|smarty:nodefaults}) |
---|
51 | </thead> |
---|
52 | <tbody> |
---|
53 | ({foreach from=$c_blacklist_list item=item}) |
---|
54 | ({if $item}) |
---|
55 | <tr> |
---|
56 | <td class="cell01">({$item.c_blacklist_id})</td> |
---|
57 | <td>({$item.easy_access_id})</td> |
---|
58 | <td> |
---|
59 | ({if $item.c_member_id}) |
---|
60 | <a href="({t_url _absolute=1 m=pc a=page_f_home})&target_c_member_id=({$item.c_member_id})" target="_blank">({$item.nickname})</a> |
---|
61 | ({/if}) |
---|
62 | </td> |
---|
63 | <td>({$item.info|nl2br})</td> |
---|
64 | <td> |
---|
65 | <ul> |
---|
66 | <li><a href='?m=({$module_name})&a=page_({$hash_tbl->hash('blacklist_edit','page')})&target_c_blacklist_id=({$item.c_blacklist_id})'>編集</a></li> |
---|
67 | <li><a href='?m=({$module_name})&a=page_({$hash_tbl->hash('blacklist_delete_confirm','page')})&target_c_blacklist_id=({$item.c_blacklist_id})'>ブラックリストから外す</a></li> |
---|
68 | </ul> |
---|
69 | </td> |
---|
70 | </tr> |
---|
71 | ({/if}) |
---|
72 | ({foreachelse}) |
---|
73 | <tr> |
---|
74 | <td colspan="5">ブラックリストは登録されていません</td> |
---|
75 | </tr> |
---|
76 | ({/foreach}) |
---|
77 | </table> |
---|
78 | |
---|
79 | ({if $c_blacklist_list}) |
---|
80 | <div class="listControl" id="pager02"> |
---|
81 | ({$smarty.capture.pager|smarty:nodefaults}) |
---|
82 | </div> |
---|
83 | ({/if}) |
---|
84 | |
---|
85 | ({$inc_footer|smarty:nodefaults}) |
---|