123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101 |
- @extends('layouts.master')
-
- @section('navigation')
- @if(Auth::user()->role==1)
- @include('local.managers.admins._navigation')
- @elseif(Auth::user()->role==2)
- @include('local.managers.sCoords._new_navigation')
- @elseif(Auth::user()->role==3)
- @include('local.managers.pCoords._new_navigation')
- @endif
- @stop
-
- @section('main')
-
- <div class="row">
- <div class="col-md-12">
-
- <!-- Nav tabs -->
- <ul class="nav nav-tabs" role="tablist">
- <li role="presentation" class="active"><a href="#undergraduate" aria-controls="undergraduate" role="tab" data-toggle="tab"><h4>Undergraduate Program Participation</h4></a></li>
- <li role="presentation"><a href="#graduate" aria-controls="graduate" role="tab" data-toggle="tab"><h4>Graduate Program Participation</h4></a></li>
- </ul>
-
- <!-- Tab panes -->
- <div class="tab-content">
- <div role="tabpanel" class="tab-pane active" id="undergraduate">
- <br>
- <table class="table table-striped datatable">
- <thead>
- <th>Name</th>
- <th>School</th>
- <th>Sections that attempted outcome</th>
- <th>Sections that achieved outcome </th>
- <th>Success rate</th>
- </thead>
- <tbody>
- @foreach($undergradResults["names"] as $id=>$undergradProgramName)
- <tr>
- <td>{{{ $undergradProgramName }}}</td>
- <td>{{{ $undergradResults["schools"][$id] }}}</td>
- <td>{{{ $undergradResults["attempted"][$id] }}}</td>
- <td>{{{ $undergradResults["achieved"][$id] }}}</td>
- <td>{{{ $undergradResults["successRate"][$id] }}}</td>
- </tr>
- @endforeach
- </tbody>
- <caption>N/M: Not Measured</caption>
- </table>
- </div>
- <div role="tabpanel" class="tab-pane" id="graduate">
- <br>
- <table class="table table-striped datatable">
- <thead>
- <th>Name</th>
- <th>School</th>
- <th>Sections that attempted outcome</th>
- <th>Sections that achieved outcome </th>
- <th>Success rate</th>
- </thead>
- <tbody>
- @foreach($gradResults["names"] as $id=>$gradProgramName)
- <tr>
- <td>{{{ $gradProgramName }}}</td>
- <td>{{{ $gradResults["schools"][$id] }}}</td>
- <td>{{{ $gradResults["attempted"][$id] }}}</td>
- <td>{{{ $gradResults["achieved"][$id] }}}</td>
- <td>{{{ $gradResults["successRate"][$id] }}}</td>
- </tr>
- @endforeach
- </tbody>
- <caption>N/M: Not Measured</caption>
- </table>
- </div>
-
- </div>
- </div>
- </div>
-
- @stop
-
- @section('included-js')
- @include('global._datatables_js')
- @stop
-
- @section('javascript')
-
- // ------------------------------------------------------------------------
- // Page Load
- // ------------------------------------------------------------------------
-
- // ------------------------------------------------------------------------
- // Events
- // ------------------------------------------------------------------------
-
-
-
- // ------------------------------------------------------------------------
- // Functions
- // ------------------------------------------------------------------------
-
- @stop
|