No Description

assessment_reports.blade.php 1.9KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  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 program'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. <table class="table">
  22. <thead>
  23. <tr>
  24. <td></td>
  25. @foreach($programs as $program)
  26. <td><span class="active"></span> {{ $program->name }}</td>
  27. @endforeach
  28. </tr>
  29. </thead>
  30. @foreach($outcomes as $outcome)
  31. <tr>
  32. <td>
  33. {{ $outcome->name }}
  34. </td>
  35. @foreach($programs as $program)
  36. <td>
  37. <a href="{{ URL::action('OutcomesController@programAssessmentReport', array($outcome->id, $program->id))}}">
  38. <span class="glyphicon glyphicon-eye-open icon-btn"></span> View
  39. </a>
  40. </td>
  41. @endforeach
  42. </tr>
  43. @endforeach
  44. </table>
  45. </div>
  46. </div>
  47. @stop