Files
PyRIGS/RIGS/templates/RIGS/revision_list.html
2015-04-21 23:55:55 +01:00

14 lines
226 B
HTML

{% 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 %}