@if(!$plan->is_submitted)
@if(date('Y-m-d') <= $plan->quinquennium->five_year_plan_due_date)
Note: This plan is saved as a
draft. Remember to submit it by
{{ date('F d', strtotime($plan->quinquennium->five_year_plan_due_date)) }} . After the due date, unsubmitted drafts will not be considered.
{{ Form::open(array('action'=>'FiveYearPlansController@update', 'class'=>"form-inline")) }}
Edit
PDF
MS Word
Submit
Back to Five Year Plans
{{ Form::close() }}
@else
Note: This plan was not submitted on time.
@endif
@else
Note: This plan was submitted on {{ date('F j, Y', strtotime($plan->submitted_on)) }}
@if(date('Y-m-d') < $plan->quinquennium->five_year_plan_due_date)
Revert Submission
@endif
@endif
@foreach($plan->fypParts as $mini_plan)
Academic Year
Learning Outcome to be assessed
Learning Objectives
Courses to use for assessment
@foreach($mini_plan->fypPartOutcomes as $index => $outcome)
@if($index == 0)
{{ $mini_plan->year_start }}-{{ $mini_plan->year_end }}
@else
{{ $mini_plan->year_start }}-{{ $mini_plan->year_end }}
@endif
{{ $outcome->outcome->name }}
@foreach(json_decode($outcome->objectives) as $objective)
{{ $objective->text }}
@endforeach
@foreach(json_decode($outcome->courses) as $course)
{{ $course->code }}{{ $course->number }}: {{ $course->name }}
@endforeach
@endforeach
@endforeach
This summary is automatically generated using the information from the Full Plan. Any changes to the plan will be reflected here.
Learning Outcome
@foreach($plan->fypParts as $mini_plan)
{{ $mini_plan->year_start }}-{{ $mini_plan->year_end }}
@endforeach
@foreach($outcomes as $outcome)
{{ $outcome->name }}
@foreach($plan->fypParts as $mini_plan)
@if($mini_plan->willAssessOutcome($outcome->id))
@else
@endif
@endforeach
@endforeach
@if(!$plan->is_submitted)
@if(date('Y-m-d') <= $plan->quinquennium->five_year_plan_due_date)
{{ Form::open(array('action'=>'FiveYearPlansController@update', 'class'=>"form-inline")) }}
Edit
PDF
MS Word
Submit
Back to Five Year Plans
{{ Form::close() }}
@else
Note: This plan was not submitted on time.
@endif
@else
Note: This plan was submitted on {{ date('F j, Y', strtotime($plan->submitted_on)) }}
@if(date('Y-m-d') < $plan->quinquennium->five_year_plan_due_date)
Revert Submission
@endif
@endif