summaryrefslogtreecommitdiffstats
path: root/equations/templates/equations/variable_list.html
diff options
context:
space:
mode:
Diffstat (limited to 'equations/templates/equations/variable_list.html')
-rw-r--r--equations/templates/equations/variable_list.html24
1 files changed, 24 insertions, 0 deletions
diff --git a/equations/templates/equations/variable_list.html b/equations/templates/equations/variable_list.html
new file mode 100644
index 0000000..9ff7a64
--- /dev/null
+++ b/equations/templates/equations/variable_list.html
@@ -0,0 +1,24 @@
+{% extends "base.html" %}
+
+{% block title %}Variables; What a World!{% endblock %}
+
+{% block content %}
+{% if object_list %}
+<table width="100%">
+ {% for item in object_list %}
+ <tr style="height:60px;"><td style="width:10%;padding-left:10%;">
+ <a href="{{ item.get_absolute_url }}" class="imglink">
+ <img style="border: none;" src="{{ item.get_render_url }}" /></a>
+ </td><td style="width: 70%"><a href="{{ item.get_absolute_url }}">
+ {{ item.name }}</a></td></tr>
+ {% endfor %}
+</table>
+{% if is_paginated %}<br />{% if has_previous %}
+<b><a href="./?page={{ previous }}" style="float:left;">&lt;PREV</a></b>
+{% endif %}{% if has_next %}
+<b><a href="./?page={{ next }}" style="float:right;">NEXT&gt;</a></b>
+{% endif %}{% endif %}
+{% else %}
+Fuck, where are they?
+{% endif %}
+{% endblock %}