source: trunk/forum/styles/wowgold/template/mcp_front.html

Last change on this file was 400, checked in by george, 16 years ago
  • Přidáno: Nové forum phpBB 3.
File size: 5.8 KB
Line 
1<!-- INCLUDE mcp_header.html -->
2
3<!-- IF S_SHOW_UNAPPROVED -->
4 <form name="mcp_queue" method="post" action="{S_MCP_QUEUE_ACTION}">
5
6 <table class="tablebg" width="100%" cellspacing="1">
7 <tr>
8 <td class="row3" colspan="6" align="center"><b class="gen">{L_LATEST_UNAPPROVED}</b></td>
9 </tr>
10 <tr>
11 <th>&nbsp;{L_FORUM}&nbsp;</th>
12 <th>&nbsp;{L_TOPIC}&nbsp;</th>
13 <th>&nbsp;{L_SUBJECT}&nbsp;</th>
14 <th>&nbsp;{L_AUTHOR}&nbsp;</th>
15 <th>&nbsp;{L_POST_TIME}&nbsp;</th>
16 <th width="5%">&nbsp;{L_SELECT}&nbsp;</th>
17 </tr>
18 <!-- BEGIN unapproved -->
19 <tr>
20 <td class="row1" width="15%" valign="top"><span class="gen"><!-- IF unapproved.U_FORUM --><a href="{unapproved.U_FORUM}">{unapproved.FORUM_NAME}</a><!-- ELSE -->{unapproved.FORUM_NAME}<!-- ENDIF --></span><!-- IF unapproved.U_MCP_FORUM --><br /><span class="gensmall">[ <a href="{unapproved.U_MCP_FORUM}">{L_MODERATE}</a> ]</span><!-- ENDIF --></td>
21 <td class="row2" valign="top"><span class="gen"><a href="{unapproved.U_TOPIC}">{unapproved.TOPIC_TITLE}</a></span><br /><span class="gensmall">[ <a href="{unapproved.U_MCP_TOPIC}">{L_MODERATE}</a> ]</span></td>
22 <td class="row1" valign="top"><span class="gen">{unapproved.SUBJECT}</span><br /><span class="gensmall">[ <a href="{unapproved.U_POST_DETAILS}">{L_VIEW_DETAILS}</a> ]</span></td>
23 <td class="row2" align="center" width="15%" nowrap="nowrap" valign="top"><span class="gen"><!-- IF unapproved.U_AUTHOR --><a href="{unapproved.U_AUTHOR}">{unapproved.AUTHOR}</a><!-- ELSE -->{unapproved.AUTHOR}<!-- ENDIF --></span></td>
24 <td class="row1" align="center" width="15%" nowrap="nowrap" valign="top"><span class="gensmall">{unapproved.POST_TIME}</span></td>
25 <td class="row2" align="center"><input type="checkbox" class="radio" name="post_id_list[]" value="{unapproved.POST_ID}" /></td>
26 </tr>
27 <!-- BEGINELSE -->
28 <tr>
29 <td class="row1" colspan="6" align="center"><span class="gen">{L_UNAPPROVED_POSTS_ZERO_TOTAL}</span></td>
30 </tr>
31 <!-- END unapproved -->
32 <!-- IF S_HAS_UNAPPROVED_POSTS -->
33 <tr>
34 <td class="row3" colspan="6"><span class="gensmall">{L_UNAPPROVED_TOTAL}</span></td>
35 </tr>
36 <!-- ENDIF -->
37 <tr>
38 <td class="cat" colspan="6" align="center"><input class="btnmain" type="submit" name="action[approve]" value="{L_APPROVE}" />&nbsp;&nbsp;<input class="btnlite" type="submit" name="action[disapprove]" value="{L_DISAPPROVE}" /></td>
39 </tr>
40 </table>
41 {S_FORM_TOKEN}
42 </form>
43
44 <table width="100%" cellspacing="2" cellpadding="2" border="0" align="center">
45 <tr>
46 <td align="{S_CONTENT_FLOW_END}" valign="top" nowrap="nowrap"><b class="gensmall"><a href="#" onclick="marklist('mcp_queue', '', true); return false;">{L_MARK_ALL}</a> :: <a href="#" onclick="marklist('mcp_queue', '', false); return false;">{L_UNMARK_ALL}</a></b></td>
47 </tr>
48 </table>
49
50 <br clear="all" /><br />
51<!-- ENDIF -->
52
53<!-- IF S_SHOW_REPORTS -->
54 <table class="tablebg" width="100%" cellspacing="1">
55 <tr>
56 <td class="row3" colspan="5" align="center"><b class="gen">{L_LATEST_REPORTED}</b></td>
57 </tr>
58 <tr>
59 <th>&nbsp;{L_FORUM}&nbsp;</th>
60 <th>&nbsp;{L_TOPIC}&nbsp;</th>
61 <th>&nbsp;{L_SUBJECT}&nbsp;</th>
62 <th>&nbsp;{L_REPORTER}&nbsp;</th>
63 <th>&nbsp;{L_REPORT_TIME}&nbsp;</th>
64 </tr>
65 <!-- BEGIN report -->
66 <tr>
67 <td class="row1" width="15%" valign="top"><span class="gen"><!-- IF report.U_FORUM --><a href="{report.U_FORUM}">{report.FORUM_NAME}</a><!-- ELSE -->{report.FORUM_NAME}<!-- ENDIF --></span><!-- IF report.U_MCP_FORUM --><br /><span class="gensmall">[ <a href="{report.U_MCP_FORUM}">{L_MODERATE}</a> ]</span><!-- ENDIF --></td>
68 <td class="row2" valign="top"><span class="gen"><a href="{report.U_TOPIC}">{report.TOPIC_TITLE}</a></span><br /><span class="gensmall">[ <a href="{report.U_MCP_TOPIC}">{L_MODERATE}</a> ]</span></td>
69 <td class="row1" valign="top"><span class="gen">{report.SUBJECT}</span><br /><span class="gensmall">[ <a href="{report.U_POST_DETAILS}">{L_VIEW_DETAILS}</a> ]</span></td>
70 <td class="row2" align="center" width="15%" nowrap="nowrap" valign="top"><span class="gen">{report.REPORTER_FULL}</span></td>
71 <td class="row1" align="center" width="15%" nowrap="nowrap" valign="top"><span class="gensmall">{report.REPORT_TIME}</span></td>
72 </tr>
73 <!-- BEGINELSE -->
74 <tr>
75 <td class="row1" colspan="5" align="center"><span class="gen">{L_REPORTS_ZERO_TOTAL}</span></td>
76 </tr>
77 <!-- END report -->
78 <!-- IF S_HAS_REPORTS -->
79 <tr>
80 <td class="row3" colspan="5"><span class="gensmall">{L_REPORTS_TOTAL}</span></td>
81 </tr>
82 <!-- ENDIF -->
83 </table>
84
85 <br clear="all" /><br />
86<!-- ENDIF -->
87
88<!-- IF S_SHOW_LOGS -->
89 <table class="tablebg" width="100%" cellspacing="1" cellpadding="4" border="0" align="{S_CONTENT_FLOW_END}">
90 <tr>
91 <td class="row3" colspan="5" align="center"><b class="gen">{L_LATEST_LOGS}</b></td>
92 </tr>
93 <tr>
94 <th width="15%" nowrap="nowrap">{L_USERNAME}</th>
95 <th width="12%" nowrap="nowrap">{L_IP}</th>
96 <th width="45%" nowrap="nowrap">{L_ACTION}</th>
97 <th nowrap="nowrap"></th>
98 <th width="18%" nowrap="nowrap">{L_TIME}</th>
99 </tr>
100 <!-- BEGIN log -->
101 <tr>
102 <td class="row1" nowrap="nowrap"><span class="gen">{log.USERNAME}</span></td>
103 <td class="row1" align="center" nowrap="nowrap"><span class="gen">{log.IP}</span></td>
104 <td class="row1"><span class="genmed">{log.ACTION}</span></td>
105 <td class="row1" align="center" nowrap="nowrap"><span class="gensmall"><!-- IF log.U_VIEW_TOPIC --><a href="{log.U_VIEW_TOPIC}">{L_VIEW_TOPIC}</a><!-- IF log.U_VIEWLOGS --> | <!-- ENDIF --><!-- ENDIF --><!-- IF log.U_VIEWLOGS --><a href="{log.U_VIEWLOGS}">{L_VIEW_TOPIC_LOGS}</a><!-- ENDIF --></span></td>
106 <td class="row1" align="center" nowrap="nowrap"><span class="gensmall">{log.TIME}</span></td>
107 </tr>
108 <!-- BEGINELSE -->
109 <tr>
110 <td class="row1" colspan="5" align="center"><span class="gen">{L_NO_ENTRIES}</span></td>
111 </tr>
112 <!-- END log -->
113 </table>
114
115 <br clear="all" />
116<!-- ENDIF -->
117
118<!-- INCLUDE mcp_footer.html -->
Note: See TracBrowser for help on using the repository browser.