Skip to content

Commit

Permalink
Tiny update, adds item title to volunteer checklist summary
Browse files Browse the repository at this point in the history
  • Loading branch information
RobRuana committed Aug 10, 2018
1 parent 07c8cfc commit f76057b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions uber/templates/summary/volunteer_checklists.html
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ <h1>Volunteer Checklists</h1>
{% for attendee in attendees %}
<tr>
<td>{{ attendee|form_link }}</td>
{% for checkbox in attendee.checklist_items.values() %}
<td>{{ checkbox|safe }}</td>
{% for item_name, checkbox in attendee.checklist_items.items() %}
<td title="{{ item_name }}">{{ checkbox|safe }}</td>
{% endfor %}
</tr>
{% endfor %}
Expand Down

0 comments on commit f76057b

Please sign in to comment.