<?php $__env->startSection('page_title'); ?>
    OSAA - Forms
<?php $__env->stopSection(); ?>

<?php $__env->startSection('page_sub_title'); ?>    
	<?php echo $information['form_name']; ?>
<?php $__env->stopSection(); ?>

<?php $__env->startSection('scripts'); ?>
    @parent

	
<?php $__env->stopSection(); ?>

<?php $__env->startSection('jquery_init'); ?>
	$('.button').button();
	$('.button.close').button({ icons : { primary : 'ui-icon-circle-close'}});
	$('.tooltip').tooltip();	 
<?php $__env->stopSection(); ?>

<?php $__env->startSection('page_functions'); ?> 	
	
	<a href="<?php echo $information['return_url']; ?>" class="button close tooltip" style="font-size:9pt;" title="Discard any unsaved changes and close this form.">Close</a>	
	
<?php $__env->stopSection(); ?>


<?php $__env->startSection('main_content'); ?>    
	<h1>This Form Is Closed</h1>

	<p>
		This form is now closed.  The deadline for this form has passed.  No more entries are being accepted.
	</p>

	<table>		
		<tr>
			<td style="width:100px;">
				<b>Open</b>
			</td>
			<td>
				<?php echo date('g:i A l, F j, Y', strtotime($information['activity_form']->open_at)); ?>
			</td>
		</tr>

		<tr>
			<td>
				<b>Due</b>
			</td>
			<td>
				<?php echo date('g:i A l, F j, Y', strtotime($information['activity_form']->due_at)); ?>
			</td>
		</tr>

		<tr>
			<td>
				<b>Close</b>
			</td>
			<td>
				<?php echo date('g:i A l, F j, Y', strtotime($information['activity_form']->close_at)); ?>
			</td>
		</tr>
	</table>


<?php $__env->stopSection(); ?>
