30 lines
591 B
HTML
30 lines
591 B
HTML
{% extends "base.html" %}
|
|
{% load staticfiles %}
|
|
|
|
{% block title %}Planned Session{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="grid_12 alpha">
|
|
{% include "planningbuttons.html" %}
|
|
|
|
</div>
|
|
<div id="left" class="grid_6 alpha">
|
|
<h1>Session {{ psdict.name.1 }}</h1>
|
|
<table class="listtable shortpadded">
|
|
{% for header, value in psdict.items %}
|
|
{% if header in attrs %}
|
|
<tr>
|
|
<td><b>{{ value.0 }}</b></td><td>{{ value.1 }}</td>
|
|
</tr>
|
|
{% endif %}
|
|
{% endfor %}
|
|
</table>
|
|
</div>
|
|
<div id="right" class="grid_6 omega">
|
|
<p> </p>
|
|
</div>
|
|
|
|
|
|
|
|
{% endblock %}
|