Sha256: 5ad2bfa5afeeed2287535f534438e79e7969fbc806a5395a62e0396d6410ca54

Contents?: true

Size: 1.29 KB

Versions: 6

Compression:

Stored size: 1.29 KB

Contents

<table class='exam-parts table table-bordered table-condensed'>
  <thead>
    <tr>
      <th id='total_points_title' class='btn-inverse' style="width:65px">
        Total_Points
      </th>
      	<% for exam in @exams: %>
          <% if exam.use_weighting == 'true' : %>
            <td id='weighting_total_title' class='btn-inverse' style="width:65px">
            	Weighting Total
            </td>
          <% end %>
        <% end %>
      <th class='btn-inverse'>Deviation</th>
      <th id='grade_title' class='btn-inverse' style="width:65px">Grade</th>
      <th id='rank_title' class='btn-inverse' style="width:65px">Rank </th>
    </tr>
  </thead>
  <tbody>
    <% for student in @students: %>
      <tr class='student_<%= student.id %>'>
        <% for exam in @exams: %>
          <td class="vm-tr"><%= @student_total_scores[student.id][exam.id] %></td>
          <td class="vm-tr"><%= @deviation[student.id][exam.id] %></td>
          <td class="vm-tr"><%= @grades[exam.id][student.id] %></td>
          <td class="vm-tr"><%= @ranks[exam.id][student.id] %></td>
        <% end %>
      </tr>
    <% end %>
    <tr>
      <% for exam in @exams: %>
        <td class="vm-tr"><%= @exam_averages[exam.id] %></td>
        <td></td>
        <td></td>
        <td></td>
      <% end %>
    </tr>
  </tbody>
</table>

Version data entries

6 entries across 6 versions & 2 rubygems

Version Path
gaku_core-0.0.3 app/assets/javascripts/gaku/backbone/templates/tables/exam_calculations.jst.eco
gaku-0.0.3 core/app/assets/javascripts/gaku/backbone/templates/tables/exam_calculations.jst.eco
gaku-0.0.2 core/app/assets/javascripts/gaku/backbone/templates/tables/exam_calculations.jst.eco
gaku_core-0.0.2 app/assets/javascripts/gaku/backbone/templates/tables/exam_calculations.jst.eco
gaku-0.0.1 core/app/assets/javascripts/gaku/backbone/templates/tables/exam_calculations.jst.eco
gaku_core-0.0.1 app/assets/javascripts/gaku/backbone/templates/tables/exam_calculations.jst.eco