Ei kuvausta

assessment_reports.blade.php 1.2KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. @extends('layouts.master')
  2. @section('navigation')
  3. @if($role==1)
  4. @include('local.managers.admins._navigation')
  5. @elseif($role==2)
  6. @include('local.managers.sCoords._navigation')
  7. @elseif($role==3)
  8. @include('local.managers.pCoords._navigation')
  9. @else
  10. @include('local.professors._navigation')
  11. @endif
  12. @stop
  13. @section('main')
  14. <div class="row">
  15. <div class="col-md-12">
  16. <p>Click the links below to see reports for your assessed courses during the following semester(s):</p>
  17. <ul>
  18. @foreach (Session::get('semesters_info') as $semester_info)
  19. <li>{{ $semester_info }}</li>
  20. @endforeach
  21. </ul>
  22. <p>Due to the large amount of information in these reports, please allow them to load a few seconds.</p>
  23. <ol id="table-of-contents" class="upper-roman">
  24. @foreach($outcomes as $outcome)
  25. <li>
  26. <a href="{{ URL::action('OutcomesController@professorAssessmentReport', array($outcome->id))}}">
  27. {{ $outcome->name }}
  28. </a>
  29. </li>
  30. @endforeach
  31. </ol>
  32. </div>
  33. </div>
  34. @stop