odsreg/cfp/templates/topicstatus.html
Thierry Carrez 56fdefeccd Initial import
Initial import after cleanup.
Previous history lives in https://code.launchpad.net/~ttx/+junk/odsreg
2012-12-20 16:11:01 +01:00

14 lines
316 B
HTML

{% extends "base.html" %}
{% block content %}
{% for topic in topics %}
<div class="span-5">
<h2>{{ topic.name }}</h2>
</div>
<div style="clear:right">
<iframe frameborder=0 width=580 height=100 src=/scheduling/graph/{{ topic.id }}></iframe>
</div>
{% endfor %}
{% endblock %}
{% block extrafooter %}
{% endblock %}