";
echo i18n("Signature Page");
if($statusstudent=="complete" && $statusproject=="complete" && $statusmentor=="complete" && $statussafety=="complete" && $statusemergencycontact=="complete" && $statustour=="complete")
echo "";
+ else
+ echo " (".i18n("Available when ALL above sections are \"Complete\"").")";
+
echo " | ";
echo i18n("Print");
//check to see if its complete
@@ -227,6 +230,11 @@ echo "";
echo "";
echo "".i18n("Special Award Nominations")." | ";
+ $sp_proj_ok = true;
+ if($statusstudent =="incomplete" || $statusproject == "incomplete") {
+ $sp_proj_ok = false;
+ }
+
$special_awards_open = false;
if($config['specialawardnomination_aftersignatures']=="no") {
$special_awards_open = true;
@@ -253,7 +261,11 @@ echo "";
}
else if($config['specialawardnomination']=="registration")
{
- echo " | ".i18n("Self-nominate for special awards")." | ";
+ if($sp_proj_ok == false) {
+ echo "(".i18n("Available when your Student Information and Project Information is \"Complete\"").") | ";
+ } else {
+ echo "".i18n("Self-nominate for special awards")." | ";
+ }
}
$q=mysql_query("SELECT * FROM projects WHERE registrations_id='".$_SESSION['registration_id']."'");
@@ -348,6 +360,7 @@ echo "";
echo " | ".i18n("Total (including all taxes)")." | $".sprintf("%.02f", $regfee)." | | ";
echo "
";
echo i18n($extra_after);
+
echo " ";
echo " ";
echo " ";
|
|