Skip to content

Commit

Permalink
fix student profile
Browse files Browse the repository at this point in the history
  • Loading branch information
maxicecilia committed Apr 29, 2015
1 parent 13fa9de commit b49003e
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions simple_classroom/templates/classroom/profile.html
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,12 @@ <h4>{{ enroll.dictation }}</h4>
</thead>
<tbody>
{% for score in enroll.score_set.all %}
<tr>
<td class="text-center">{{ score.assignment }}</td>
<td class="text-right">{% if score.value != -1 %}{{ score.value }}{% endif %}</td>
<td class="text-right">{{ score.get_average }}</td>
<td class="text-center">{{ score.comment }}</td>
</tr>
{% endfor %}
</tbody>
</table>
Expand Down

0 comments on commit b49003e

Please sign in to comment.