add eligibility status

master
James Sigurðarson 2016-07-14 19:24:35 +00:00
parent a340cc30bb
commit 2ce77b953a
1 changed files with 5 additions and 1 deletions

View File

@ -89,12 +89,16 @@
<div class="col s10 offset-s1">
<table>
<thead>
<th> Username </th>
<tr>
<th>Username</th>
<th>Eligibility Status</th>
</tr>
</thead>
<tbody>
{% for member in team.members %}
<tr>
<td>{{ member.username }}</td>
<td>{{ member.eligible() }}</td>
</tr>
{% endfor %}
</tbody>