Add the link to the One-click CWSF registration

Also split the student display onto multiple lines
This commit is contained in:
james 2006-10-19 23:12:11 +00:00
parent aa93c170db
commit 06cb40304b
2 changed files with 10 additions and 2 deletions

View File

@ -264,14 +264,21 @@ function xmlCreateRecurse($d)
foreach($winner['students'] AS $s)
{
echo " "; echo " "; echo " "; echo " ";
echo i18n("Name").": ";
echo $s['firstname']." ".$s['lastname'];
echo " Email: ".$s['email'];
echo "<br />";
echo "&nbsp;"; echo "&nbsp;"; echo "&nbsp;"; echo "&nbsp;";
echo i18n("Email").": ".$s['email'];
if(!$s['email'])
{
echo error(i18n("No Email Address"),"inline");
$error=true;
}
echo " Grade: ".$s['grade'];
echo "<br />";
echo "&nbsp;"; echo "&nbsp;"; echo "&nbsp;"; echo "&nbsp;";
echo i18n("Grade").": ".$s['grade'];
if(!$s['grade'])
{
echo error(i18n("No Grade"),"inline");

View File

@ -37,6 +37,7 @@
echo "<a href=\"translations.php\">".i18n("Translations Management")."</a> <br />";
echo "<hr />";
echo "<a href=\"winners.php\">".i18n("Enter Winning Projects")."</a> <br />";
echo "<a href=\"cwsfregister.php\">".i18n("One-Click CWSF Registration")."</a> <br />";
echo "<hr />";
echo "<a href=\"communication.php\">".i18n("Communication (Send Emails)")."</a> <br />";