{% 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 %}
    {% for aid, spec in actions.items() %}
  1. {{print_action(aid, spec)}}
  2. {% endfor %} {% 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: #}