summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'python/templates/pages/packages/index.html')
-rw-r--r--python/templates/pages/packages/index.html21
1 files changed, 21 insertions, 0 deletions
diff --git a/python/templates/pages/packages/index.html b/python/templates/pages/packages/index.html
new file mode 100644
index 0000000..82ccf59
--- /dev/null
+++ b/python/templates/pages/packages/index.html
@@ -0,0 +1,21 @@
+{% extends "layout/base.html" %}
+{% block content %}
+<div class="row">
+ <div class="col-xs-12 col-md-6">
+ <h2>Categories</h2>
+ <table class="table table-striped frontpage-table">
+ {% for key, CM in CM_tmp.items %}
+ <tr>
+ <td class="frontpage-table-package-atom">
+ <a href="/categories/{{ CM.CategoryId }}/" title="{{ key }}">{{ key }}</a></td>
+ <td>
+ <p title="{{ CM.Descriptions }}">{{ CM.Descriptions }}</p>
+ <p title="{% for P in CM.Packages %}{{ key }}/{{ P }}{% endfor %}">Packages</p>
+ </td>
+ </tr>
+ {% endfor %}
+</table>
+ </div>
+</div>
+
+{% endblock %} \ No newline at end of file