diff sat_templates/templates/default/event/admin.html @ 220:f7d6ae06c42f

python 3 port: replaced iteritems() by items() for dictionaries
author Goffi <goffi@goffi.org>
date Tue, 13 Aug 2019 08:56:22 +0200
parents 178f55b825b7
children aa37750c2617
line wrap: on
line diff
--- a/sat_templates/templates/default/event/admin.html	Tue Aug 13 08:57:03 2019 +0200
+++ b/sat_templates/templates/default/event/admin.html	Tue Aug 13 08:56:22 2019 +0200
@@ -33,7 +33,7 @@
                 <th>{% trans %}name{% endtrans %}</th>
                 <th>{% trans %}coming?{% endtrans %}</th>
                 <th>{% trans %}guests{% endtrans %}</th>
-            {% for name, data in invitees.iteritems() %}
+            {% for name, data in invitees.items() %}
                 <tr>
                     <td>{{name}}</td>
                     <td>{{data.attend|default('')}}</td>