Added glossary and acknowledgement pages, and reworked the structure of the theory pages.

This commit is contained in:
2014-03-01 23:08:25 +10:00
parent adb505cc93
commit 5657a9cb38
13 changed files with 219 additions and 13 deletions

View File

@@ -0,0 +1,16 @@
{% extends "three_d_viewer/base.html" %}
{% block content %}
<div id="pushDown"></div>
<div id="mainText">
<p><h3>Glossary</h3><br><br>
<table>
{% for entry in entries %}
<tr>
<td><p>{{ entry.name }}</p></td>
<td><p>{{ entry.definition }}</p></td>
</tr>
{% endfor %}
</table>
</div>
{% endblock %}