Skip to content

Commit

Permalink
Fixed group list bug with missing key.
Browse files Browse the repository at this point in the history
  • Loading branch information
exhuma committed May 2, 2015
1 parent e66a6f5 commit ef526ba
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion lost_tracker/templates/group_list.html
Expand Up @@ -21,7 +21,11 @@
<td>{{group.inserted.strftime('%Y-%m-%d %H:%M:%S')}}</td>
<td>{{group.start_time|default('', true)}}</td>
<td>{{group.direction|default('', true)}}</td>
<td><a href="{{url_for('accept_registration', key=group.confirmation_key)}}">{{group.confirmation_key}}</a></td>
{% if group.confirmation_key %}
<td><a href="{{url_for('accept_registration', key=group.confirmation_key)}}">{{group.confirmation_key}}</a></td>
{% else %}
<td>&nbsp;</td>
{% endif %}
</tr>
{%- endfor %}
</tbody>
Expand Down

0 comments on commit ef526ba

Please sign in to comment.