-
Notifications
You must be signed in to change notification settings - Fork 11
/
modcp_body.tpl
54 lines (51 loc) · 2.43 KB
/
modcp_body.tpl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<ul id="navstrip" class="clearfix">
<li class="begin"><a href="{U_INDEX}"><span>{L_INDEX}</span></a></li>
<!--li><a href="{U_ALBUM}">{L_ALBUM}</a></li-->
<li><strong>{L_MOD_CP}</strong></li>
</ul>
<div class="pagination">{PAGINATION}</div>
<div class="right">{PAGE_NUMBER}</div>
<div class="borderwrap">
<form name="manage" action="{S_MODCP_ACTION}" method="post" class="ipbform">
<div class="maintitle"><h3>{L_MOD_CP}</h3></div>
<div class="box-content">
<table class="ipbtable" cellspacing="0">
<thead>
<tr>
<th class="icon"> </th>
<th>{L_TOPICS}</th>
<th>{L_REPLIES}</th>
<th>{L_LASTPOST}</th>
<th>{L_SELECT}</th>
</tr>
</thead>
<tbody class="statused">
<!-- BEGIN topicrow -->
<tr>
<td class="icon row1" style="border-left:medium none">
<img title="{topicrow.L_TOPIC_FOLDER_ALT}" src="{topicrow.TOPIC_FOLDER_IMG}" alt="{topicrow.L_TOPIC_FOLDER_ALT}" />
</td>
<td class="row2">{topicrow.TOPIC_TYPE}<a class="topictitle" href="{topicrow.U_VIEW_TOPIC}">{topicrow.TOPIC_TITLE}</a></td>
<td class="row1 centered">{topicrow.REPLIES}</td>
<td class="row2">{topicrow.LAST_POST_TIME}</td>
<td class="row1 centered"><input type="checkbox" name="topic_id_list[]" value="{topicrow.TOPIC_ID}" /></td>
</tr>
<!-- END topicrow -->
</tbody>
</table>
<div class="formbuttonrow clearfix">
<div class="right"><a href="javascript:void(0);" onclick="this.value=check('select','manage');return false;">{L_SELECT_ALL}</a> :: <a href="#" onclick="this.value=check('unselect','manage');return false;">{L_USELECT_ALL}</a></div>
<div class="left">
{S_HIDDEN_FIELDS}
<input type="submit" name="delete" value="{L_DELETE}" class="button" />
<input type="submit" name="move" value="{L_MOVE}" class="button" />
<input type="submit" name="lock" value="{L_LOCK}" class="button" />
<input type="submit" name="unlock" value="{L_UNLOCK}" class="button" />
<!-- BEGIN switch_sticky --><input class="button" type="submit" name="sticky" value="{L_STICKY}" /> <!-- END switch_sticky -->
<!-- BEGIN switch_announce --><input class="button" type="submit" name="announce" value="{L_ANNOUNCE}" /> <!-- END switch_announce -->
<!-- BEGIN switch_sticky --><input class="button" type="submit" name="normal" value="{L_NORMAL}" /><!-- END switch_sticky -->
</div>
</div>
</div>
</form>
</div>