- Update the admin judge page to make the order of things a bit more clear.

This commit is contained in:
dave 2007-12-22 10:17:16 +00:00
parent fd9da0845b
commit 8ef6f7ea45

View File

@ -31,21 +31,26 @@
'Administration' => 'admin/index.php')
);
echo "<br />";
echo '<b>'.i18n('Judges').'</b><ul>';
if($config['judge_registration_type']=="invite")
{
echo "<a href=\"judges_invite.php\">".i18n("Invite Judges")."</a><br />";
echo "<li><a href=\"judges_invite.php\">".i18n("Invite Judges")."</a></li></li>";
}
echo "<a href=\"judges_judges.php\">".i18n("List Judges")."</a><br />";
echo "<a href=\"judges_manager.php\">".i18n("Manage Judges")."</a> ".i18n("- Add, Delete, Edit, and List judges")."<br />";
echo "<a href=\"judges_teams.php\">".i18n("Manage Judging Teams")."</a><br />";
echo "<a href=\"judges_teams_members.php\">".i18n("Manage Judging Team Members")."</a><br />";
echo "<a href=\"judges_timeslots.php\">".i18n("Manage Judging Timeslots")."</a><br />";
echo "<a href=\"judges_teams_timeslots.php\">".i18n("Assign Timeslots to Judging Teams")."</a><br />";
echo "<a href=\"judges_teams_projects.php\">".i18n("Assign Projects to Teams")."</a><br />";
echo "<hr />";
echo "<li><a href=\"judges_manager.php\">".i18n("Manage Judges")."</a> - ".i18n("Add, Delete, Edit, and List judges").'</li>';
echo "<li><a href=\"judges_judges.php\">".i18n("List Judges")."</a></li>";
echo '</ul>';
echo '<b>'.i18n('Create the Judging Schedule').'</b><ul>';
echo "<li><a href=\"judges_timeslots.php\">".i18n("Create/Edit Judging Timeslots")."</a></li>";
echo "<li><a href=\"judges_jdiv.php\">".i18n("Create/Edit Divisional Judging Groupings")."</a></li>";
echo "<li><a href=\"judges_schedulerconfig.php\">".i18n("Run the Automatic Judging Scheduler")."</a></li>";
echo '</ul>';
echo '<b>'.i18n('Edit the Judging Schedule').'</b><ul>';
echo "<li><a href=\"judges_teams.php\">".i18n("Manage Judging Teams")."</a></li>";
echo "<li><a href=\"judges_teams_members.php\">".i18n("Manage Judging Team Members")."</a></li>";
echo "<li><a href=\"judges_teams_timeslots.php\">".i18n("Manage Judging Team Timeslot Assignments")."</a></li>";
echo "<li><a href=\"judges_teams_projects.php\">".i18n("Manage Judging Team Project Assignments")."</a></li>";
echo '</ul>';
echo "<a href=\"judges_jdiv.php\">".i18n("Manage Divisional Judging Groupings")."</a><br />";
echo "<a href=\"judges_schedulerconfig.php\">".i18n("Judging automatic scheduler")."</a><br />";
send_footer();