Private
Public Access
1
0

very basic plannedsession view view

This commit is contained in:
Sander Roosendaal
2018-02-06 10:57:47 +01:00
parent c33d6cb5e5
commit da02466f8a
6 changed files with 72 additions and 1 deletions

View File

@@ -0,0 +1,29 @@
{% 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>&nbsp;</p>
</div>
{% endblock %}