comparison sat_templates/templates/default/event/admin.html @ 231:aa37750c2617

theme (default): various fixes: - added missing </tr> in event/admin.html - fixed used of identities - uses `class` from kwargs in input/field.html
author Goffi <goffi@goffi.org>
date Tue, 19 May 2020 00:04:47 +0200
parents f7d6ae06c42f
children 40fccd3b7cf0
comparison
equal deleted inserted replaced
230:0e69b5843c2f 231:aa37750c2617
31 <table class="table--main"> 31 <table class="table--main">
32 <tr> 32 <tr>
33 <th>{% trans %}name{% endtrans %}</th> 33 <th>{% trans %}name{% endtrans %}</th>
34 <th>{% trans %}coming?{% endtrans %}</th> 34 <th>{% trans %}coming?{% endtrans %}</th>
35 <th>{% trans %}guests{% endtrans %}</th> 35 <th>{% trans %}guests{% endtrans %}</th>
36 </tr>
36 {% for name, data in invitees.items() %} 37 {% for name, data in invitees.items() %}
37 <tr> 38 <tr>
38 <td>{{name}}</td> 39 <td>{{name}}</td>
39 <td>{{data.attend|default('')}}</td> 40 <td>{{data.attend|default('')}}</td>
40 {% if data.attend == 'no' %} 41 {% if data.attend == 'no' %}