{% 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

{% for id, event in audiogens %} {%endfor%}
ID Running time Action
{{id}} {{event['running_time']}} {{print_actions(event['timespec']['actions'])}}
{% endblock content %} {# vim: set ts=2 sw=2 noet: #}