diff options
Diffstat (limited to 'phpBB/adm/style/acp_main.html')
-rw-r--r-- | phpBB/adm/style/acp_main.html | 48 |
1 files changed, 42 insertions, 6 deletions
diff --git a/phpBB/adm/style/acp_main.html b/phpBB/adm/style/acp_main.html index 41d00a3b41..85a1c4a225 100644 --- a/phpBB/adm/style/acp_main.html +++ b/phpBB/adm/style/acp_main.html @@ -89,13 +89,49 @@ </table> <!-- IF S_ACTION_OPTIONS --> - <form id="stats" method="post" action="{U_ACTION}"> - <fieldset class="quick"> - <select name="action">{S_ACTION_OPTIONS}</select> - - <input class="button2" type="submit" name="submit" value="{L_SUBMIT}" /> + <fieldset> + <legend>{L_STATISTIC_RESYNC_OPTIONS}</legend> + + <form id="action_online_form" method="post" action="{U_ACTION}"> + <dl> + <dt><label for="action_online">{L_RESET_ONLINE}</label></dt> + <dd><input class="button2" type="submit" id="action_online" name="action_online" value="{L_RUN}" /></dd> + </dl> + <input type="hidden" name="action" value="online"/> + </form> + + <form id="action_date_form" method="post" action="{U_ACTION}"> + <dl> + <dt><label for="action_date">{L_RESET_DATE}</label></dt> + <dd><input class="button2" type="submit" id="action_date" name="action_date" value="{L_RUN}" /></dd> + </dl> + <input type="hidden" name="action" value="date"/> + </form> + + <form id="action_stats_form" method="post" action="{U_ACTION}"> + <dl> + <dt><label for="action_stats">{L_RESYNC_STATS}</label><br /><span>{L_RESYNC_STATS_EXPLAIN}</span></dt> + <dd><input class="button2" type="submit" id="action_stats" name="action_stats" value="{L_RUN}" /></dd> + </dl> + <input type="hidden" name="action" value="stats"/> + </form> + + <form id="action_user_form" method="post" action="{U_ACTION}"> + <dl> + <dt><label for="action_user">{L_RESYNC_POSTCOUNTS}</label><br /><span>{L_RESYNC_POSTCOUNTS_EXPLAIN}</span></dt> + <dd><input class="button2" type="submit" id="action_user" name="action_user" value="{L_RUN}" /></dd> + </dl> + <input type="hidden" name="action" value="user"/> + </form> + + <form id="action_db_track_form" method="post" action="{U_ACTION}"> + <dl> + <dt><label for="action_db_track">{L_RESYNC_POST_MARKING}</label><br /><span>{L_RESYNC_POST_MARKING_EXPLAIN}</span></dt> + <dd><input class="button2" type="submit" id="action_db_track" name="action_db_track" value="{L_RUN}" /></dd> + </dl> + <input type="hidden" name="action" value="db_track"/> + </form> </fieldset> - </form> <!-- ENDIF --> <!-- IF .log --> |