No Description

assessment_reports.blade.php 1.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. @extends('layouts.master')
  2. @section('navigation')
  3. @if (Auth::user()->role == 1)
  4. @include('local.managers.admins._new_navigation')
  5. @elseif(Auth::user()->role == 2)
  6. @include('local.managers.sCoords._new_navigation')
  7. @elseif(Auth::user()->role == 3)
  8. @include('local.managers.pCoords._new_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):
  15. </p>
  16. <ul>
  17. @foreach (Session::get('semesters_info') as $semester_info)
  18. <li>{{ $semester_info }}</li>
  19. @endforeach
  20. </ul>
  21. <p>Due to the large amount of information in these reports, please allow them to load a few seconds.</p>
  22. <table class="table">
  23. <thead>
  24. <tr>
  25. <td></td>
  26. @foreach ($programs as $program)
  27. <td><span class="active"></span> {{ $program->name }}</td>
  28. @endforeach
  29. </tr>
  30. </thead>
  31. @foreach ($outcomes as $outcome)
  32. <tr>
  33. <td>
  34. {{ $outcome->name }}
  35. </td>
  36. @foreach ($programs as $program)
  37. <td>
  38. <a
  39. href="{{ URL::action('OutcomesController@programAssessmentReport', [$outcome->id, $program->id]) }}">
  40. <span class="glyphicon glyphicon-eye-open icon-btn"></span> View
  41. </a>
  42. </td>
  43. @endforeach
  44. </tr>
  45. @endforeach
  46. </table>
  47. </div>
  48. </div>
  49. @stop