No Description

assessment_reports.blade.php 1.2KB

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