56fdefeccd
Initial import after cleanup. Previous history lives in https://code.launchpad.net/~ttx/+junk/odsreg
14 lines
316 B
HTML
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 %}
|