aboutsummaryrefslogtreecommitdiff
path: root/djangopypi/templates/djangopypi/pypi.html
diff options
context:
space:
mode:
Diffstat (limited to 'djangopypi/templates/djangopypi/pypi.html')
-rw-r--r--djangopypi/templates/djangopypi/pypi.html16
1 files changed, 16 insertions, 0 deletions
diff --git a/djangopypi/templates/djangopypi/pypi.html b/djangopypi/templates/djangopypi/pypi.html
new file mode 100644
index 0000000..f98cf44
--- /dev/null
+++ b/djangopypi/templates/djangopypi/pypi.html
@@ -0,0 +1,16 @@
1{% extends "base_site.html" %}
2
3{% block bread_crumbs_1 %}{% endblock %}
4
5{% block content %}
6<table><thead><th>Updated</th><th>Package</th><th>Summary</th></thead>
7<tbody>
8{% for dist in dists %}
9 <tr>
10 <td>{{ dist.updated|date:"d/m/y" }}
11 <td><a href="{{ dist.get_pypi_absolute_url }}"/>{{ dist.name }}</a></td>
12 <td>{{ dist.summary|truncatewords:10 }}</td>
13 </tr>
14{% endfor %}
15</tbody></table>
16{% endblock %}