{% extends "bootstrap/base.html" %} {% block title %}Larigira - Upcoming events{%endblock%} {%macro print_action(aid, action)%} {% if 'nick' in action %} {{action['nick']}} {% else %} {{ action['kind'] }} {% endif %} {%endmacro%} {%macro print_actions(actions)%} {% if actions|length == 0 %} NOTHING {% else %} {{print_action(*actions.items()|first)}} {% endif %} {%endmacro%} {% block content %} Upcoming events ID Running time Action {% for id, event in audiogens %} {{id}} {{event['running_time']}} {{print_actions(event['timespec']['actions'])}} {%endfor%} {% endblock content %} {# vim: set ts=2 sw=2 noet: #}