No Description

_participation_by_lo.blade.php 1.1KB

123456789101112131415161718192021222324252627
  1. <h4>Program Particpation by Learning Outcome</h4>
  2. <table class="table table-striped table-condensed">
  3. <thead>
  4. <th>Learning Outcome</th>
  5. <th>Undergraduate Programs doing Assessment</th>
  6. <th>Undergraduate Programs Achieved</th>
  7. <th>Undergraduate Success Rate</th>
  8. </thead>
  9. <tbody>
  10. @foreach($outcomes as $outcome)
  11. <tr>
  12. <td>{{ link_to_action('OutcomesController@show', $outcome->name, array($outcome->id), $attributes = array()) }}</td>
  13. <td>{{{ $attemptedUndergradProgramsPerOutcome[$outcome->id] }}}</td>
  14. <td>{{{ $achievedUndergradProgramsPerOutcome[$outcome->id] }}}</td>
  15. <td>
  16. @if($attemptedUndergradProgramsPerOutcome[$outcome->id]!=0)
  17. {{{ round($achievedUndergradProgramsPerOutcome[$outcome->id] / $attemptedUndergradProgramsPerOutcome[$outcome->id]*100, 2) }}}%
  18. @else
  19. N/M
  20. @endif
  21. </td>
  22. </tr>
  23. @endforeach
  24. </tbody>
  25. <tfoot></tfoot>
  26. <caption>N/M: Not Measured</caption>
  27. </table>