node-registration-message-date.tpl.php in Node registration 7
File
templates/node-registration-message-date.tpl.php
View source
<?php
$registration_time_passed = $node->registration
->max_registration_time_passed();
?>
<?php
if ($registration_time_passed) {
?>
<p><?php
print t("Registrations have ended on @date.", array(
'@date' => format_date($node->registration
->max_registration_time()),
));
?></p>
<?php
}
else {
?>
<p><?php
print t("Registration for this event is not open yet.");
?></p>
<?php
}