initial attempt

This commit is contained in:
David Taylor
2015-04-21 23:55:55 +01:00
parent b0a6cc2e96
commit b7d99774b1
3 changed files with 35 additions and 3 deletions

View File

@@ -0,0 +1,14 @@
{% extends 'base.html' %}
{% block title %}Revisions{% endblock %}
{% block content %}
hello
<ul>
{% for version in object_list %}
<li>
{{ version.date_created|date:"y" }}
</li>
{% endfor %}
</ul>
{% endblock %}