1 | <!-- INCLUDE overall_header.html -->
|
---|
2 |
|
---|
3 | <a name="maincontent"></a>
|
---|
4 |
|
---|
5 | <!-- IF S_RESTORE_PERMISSIONS -->
|
---|
6 |
|
---|
7 | <h1>{L_PERMISSIONS_TRANSFERRED}</h1>
|
---|
8 |
|
---|
9 | <p>{L_PERMISSIONS_TRANSFERRED_EXPLAIN}</p>
|
---|
10 |
|
---|
11 | <!-- ELSE -->
|
---|
12 |
|
---|
13 | <h1>{L_WELCOME_PHPBB}</h1>
|
---|
14 |
|
---|
15 | <p>{L_ADMIN_INTRO}</p>
|
---|
16 |
|
---|
17 | <!-- IF S_REMOVE_INSTALL -->
|
---|
18 | <div class="errorbox">
|
---|
19 | <h3>{L_WARNING}</h3>
|
---|
20 | <p>{L_REMOVE_INSTALL}</p>
|
---|
21 | </div>
|
---|
22 | <!-- ENDIF -->
|
---|
23 |
|
---|
24 | <!-- IF S_WRITABLE_CONFIG -->
|
---|
25 | <div class="errorbox notice">
|
---|
26 | <p>{L_WRITABLE_CONFIG}</p>
|
---|
27 | </div>
|
---|
28 | <!-- ENDIF -->
|
---|
29 |
|
---|
30 | <table cellspacing="1">
|
---|
31 | <caption>{L_FORUM_STATS}</caption>
|
---|
32 | <col class="col1" /><col class="col2" /><col class="col1" /><col class="col2" />
|
---|
33 | <thead>
|
---|
34 | <tr>
|
---|
35 | <th>{L_STATISTIC}</th>
|
---|
36 | <th>{L_VALUE}</th>
|
---|
37 | <th>{L_STATISTIC}</th>
|
---|
38 | <th>{L_VALUE}</th>
|
---|
39 | </tr>
|
---|
40 | </thead>
|
---|
41 | <tbody>
|
---|
42 | <tr>
|
---|
43 | <td>{L_NUMBER_POSTS}: </td>
|
---|
44 | <td><strong>{TOTAL_POSTS}</strong></td>
|
---|
45 | <td>{L_POSTS_PER_DAY}: </td>
|
---|
46 | <td><strong>{POSTS_PER_DAY}</strong></td>
|
---|
47 | </tr>
|
---|
48 | <tr>
|
---|
49 | <td>{L_NUMBER_TOPICS}: </td>
|
---|
50 | <td><strong>{TOTAL_TOPICS}</strong></td>
|
---|
51 | <td>{L_TOPICS_PER_DAY}: </td>
|
---|
52 | <td><strong>{TOPICS_PER_DAY}</strong></td>
|
---|
53 | </tr>
|
---|
54 | <tr>
|
---|
55 | <td>{L_NUMBER_USERS}: </td>
|
---|
56 | <td><strong>{TOTAL_USERS}</strong></td>
|
---|
57 | <td>{L_USERS_PER_DAY}: </td>
|
---|
58 | <td><strong>{USERS_PER_DAY}</strong></td>
|
---|
59 | </tr>
|
---|
60 | <tr>
|
---|
61 | <td>{L_NUMBER_FILES}: </td>
|
---|
62 | <td><strong>{TOTAL_FILES}</strong></td>
|
---|
63 | <td>{L_FILES_PER_DAY}: </td>
|
---|
64 | <td><strong>{FILES_PER_DAY}</strong></td>
|
---|
65 | </tr>
|
---|
66 |
|
---|
67 |
|
---|
68 | <tr>
|
---|
69 | <td>{L_BOARD_STARTED}: </td>
|
---|
70 | <td><strong>{START_DATE}</strong></td>
|
---|
71 | <td>{L_AVATAR_DIR_SIZE}: </td>
|
---|
72 | <td><strong>{AVATAR_DIR_SIZE}</strong></td>
|
---|
73 | </tr>
|
---|
74 | <tr>
|
---|
75 | <td>{L_DATABASE_SIZE}: </td>
|
---|
76 | <td><strong>{DBSIZE}</strong></td>
|
---|
77 | <td>{L_UPLOAD_DIR_SIZE}: </td>
|
---|
78 | <td><strong>{UPLOAD_DIR_SIZE}</strong></td>
|
---|
79 | </tr>
|
---|
80 | <tr>
|
---|
81 | <td>{L_DATABASE_SERVER_INFO}: </td>
|
---|
82 | <td><strong>{DATABASE_INFO}</strong></td>
|
---|
83 | <td>{L_GZIP_COMPRESSION}: </td>
|
---|
84 | <td><strong>{GZIP_COMPRESSION}</strong></td>
|
---|
85 | </tr>
|
---|
86 | <tr>
|
---|
87 | <td>{L_BOARD_VERSION}: </td>
|
---|
88 | <td><strong>{BOARD_VERSION}</strong></td>
|
---|
89 | <!-- IF S_TOTAL_ORPHAN -->
|
---|
90 | <td>{L_NUMBER_ORPHAN}: </td>
|
---|
91 | <td><strong>{TOTAL_ORPHAN}</strong></td>
|
---|
92 | <!-- ELSE -->
|
---|
93 | <td> </td>
|
---|
94 | <td> </td>
|
---|
95 | <!-- ENDIF -->
|
---|
96 | </tr>
|
---|
97 | </tbody>
|
---|
98 | </table>
|
---|
99 |
|
---|
100 | <!-- IF S_ACTION_OPTIONS -->
|
---|
101 | <fieldset>
|
---|
102 | <legend>{L_STATISTIC_RESYNC_OPTIONS}</legend>
|
---|
103 |
|
---|
104 | <form id="action_online_form" method="post" action="{U_ACTION}">
|
---|
105 | <dl>
|
---|
106 | <dt><label for="action_online">{L_RESET_ONLINE}</label><br /><span> </span></dt>
|
---|
107 | <dd><input type="hidden" name="action" value="online" /><input class="button2" type="submit" id="action_online" name="action_online" value="{L_RUN}" /></dd>
|
---|
108 | </dl>
|
---|
109 | </form>
|
---|
110 |
|
---|
111 | <form id="action_date_form" method="post" action="{U_ACTION}">
|
---|
112 | <dl>
|
---|
113 | <dt><label for="action_date">{L_RESET_DATE}</label><br /><span> </span></dt>
|
---|
114 | <dd><input type="hidden" name="action" value="date" /><input class="button2" type="submit" id="action_date" name="action_date" value="{L_RUN}" /></dd>
|
---|
115 | </dl>
|
---|
116 | </form>
|
---|
117 |
|
---|
118 | <form id="action_stats_form" method="post" action="{U_ACTION}">
|
---|
119 | <dl>
|
---|
120 | <dt><label for="action_stats">{L_RESYNC_STATS}</label><br /><span>{L_RESYNC_STATS_EXPLAIN}</span></dt>
|
---|
121 | <dd><input type="hidden" name="action" value="stats" /><input class="button2" type="submit" id="action_stats" name="action_stats" value="{L_RUN}" /></dd>
|
---|
122 | </dl>
|
---|
123 | </form>
|
---|
124 |
|
---|
125 | <form id="action_user_form" method="post" action="{U_ACTION}">
|
---|
126 | <dl>
|
---|
127 | <dt><label for="action_user">{L_RESYNC_POSTCOUNTS}</label><br /><span>{L_RESYNC_POSTCOUNTS_EXPLAIN}</span></dt>
|
---|
128 | <dd><input type="hidden" name="action" value="user" /><input class="button2" type="submit" id="action_user" name="action_user" value="{L_RUN}" /></dd>
|
---|
129 | </dl>
|
---|
130 | </form>
|
---|
131 |
|
---|
132 | <form id="action_db_track_form" method="post" action="{U_ACTION}">
|
---|
133 | <dl>
|
---|
134 | <dt><label for="action_db_track">{L_RESYNC_POST_MARKING}</label><br /><span>{L_RESYNC_POST_MARKING_EXPLAIN}</span></dt>
|
---|
135 | <dd><input type="hidden" name="action" value="db_track" /><input class="button2" type="submit" id="action_db_track" name="action_db_track" value="{L_RUN}" /></dd>
|
---|
136 | </dl>
|
---|
137 | </form>
|
---|
138 |
|
---|
139 | <!-- IF S_FOUNDER -->
|
---|
140 | <form id="action_purge_cache_form" method="post" action="{U_ACTION}">
|
---|
141 | <dl>
|
---|
142 | <dt><label for="action_purge_cache">{L_PURGE_CACHE}</label><br /><span>{L_PURGE_CACHE_EXPLAIN}</span></dt>
|
---|
143 | <dd><input type="hidden" name="action" value="purge_cache" /><input class="button2" type="submit" id="action_purge_cache" name="action_purge_cache" value="{L_RUN}" /></dd>
|
---|
144 | </dl>
|
---|
145 | </form>
|
---|
146 | <!-- ENDIF -->
|
---|
147 | </fieldset>
|
---|
148 | <!-- ENDIF -->
|
---|
149 |
|
---|
150 | <!-- IF .log -->
|
---|
151 | <h2>{L_ADMIN_LOG}</h2>
|
---|
152 |
|
---|
153 | <p>{L_ADMIN_LOG_INDEX_EXPLAIN}</p>
|
---|
154 |
|
---|
155 | <div style="text-align: right;"><a href="{U_ADMIN_LOG}">» {L_VIEW_ADMIN_LOG}</a></div>
|
---|
156 |
|
---|
157 | <table cellspacing="1">
|
---|
158 | <thead>
|
---|
159 | <tr>
|
---|
160 | <th>{L_USERNAME}</th>
|
---|
161 | <th>{L_IP}</th>
|
---|
162 | <th>{L_TIME}</th>
|
---|
163 | <th>{L_ACTION}</th>
|
---|
164 | </tr>
|
---|
165 | </thead>
|
---|
166 | <tbody>
|
---|
167 | <!-- BEGIN log -->
|
---|
168 | <!-- IF log.S_ROW_COUNT is even --><tr class="row1"><!-- ELSE --><tr class="row2"><!-- ENDIF -->
|
---|
169 |
|
---|
170 | <td>{log.USERNAME}</td>
|
---|
171 | <td style="text-align: center;">{log.IP}</td>
|
---|
172 | <td style="text-align: center;">{log.DATE}</td>
|
---|
173 | <td>{log.ACTION}</td>
|
---|
174 | </tr>
|
---|
175 | <!-- END log -->
|
---|
176 | </tbody>
|
---|
177 | </table>
|
---|
178 |
|
---|
179 | <br />
|
---|
180 |
|
---|
181 | <!-- ENDIF -->
|
---|
182 |
|
---|
183 | <!-- IF S_INACTIVE_USERS -->
|
---|
184 | <h2>{L_INACTIVE_USERS}</h2>
|
---|
185 |
|
---|
186 | <p>{L_INACTIVE_USERS_EXPLAIN_INDEX}</p>
|
---|
187 |
|
---|
188 | <div style="text-align: right;"><a href="{U_INACTIVE_USERS}">» {L_VIEW_INACTIVE_USERS}</a></div>
|
---|
189 |
|
---|
190 | <table cellspacing="1">
|
---|
191 | <thead>
|
---|
192 | <tr>
|
---|
193 | <th>{L_USERNAME}</th>
|
---|
194 | <th>{L_JOINED}</th>
|
---|
195 | <th>{L_INACTIVE_DATE}</th>
|
---|
196 | <th>{L_INACTIVE_REASON}</th>
|
---|
197 | <th>{L_LAST_VISIT}</th>
|
---|
198 | </tr>
|
---|
199 | </thead>
|
---|
200 | <tbody>
|
---|
201 | <!-- BEGIN inactive -->
|
---|
202 | <!-- IF inactive.S_ROW_COUNT is even --><tr class="row1"><!-- ELSE --><tr class="row2"><!-- ENDIF -->
|
---|
203 |
|
---|
204 | <td><a href="{inactive.U_USER_ADMIN}">{inactive.USERNAME}</a></td>
|
---|
205 | <td>{inactive.JOINED}</td>
|
---|
206 | <td>{inactive.INACTIVE_DATE}</td>
|
---|
207 | <td>{inactive.REASON}</td>
|
---|
208 | <td>{inactive.LAST_VISIT}</td>
|
---|
209 | </tr>
|
---|
210 | <!-- BEGINELSE -->
|
---|
211 | <tr>
|
---|
212 | <td colspan="5" style="text-align: center;">{L_NO_INACTIVE_USERS}</td>
|
---|
213 | </tr>
|
---|
214 | <!-- END inactive -->
|
---|
215 | </tbody>
|
---|
216 | </table>
|
---|
217 |
|
---|
218 | <!-- ENDIF -->
|
---|
219 |
|
---|
220 | <!-- ENDIF -->
|
---|
221 |
|
---|
222 | <!-- INCLUDE overall_footer.html -->
|
---|