mirror of
https://github.com/nottinghamtec/PyRIGS.git
synced 2026-01-29 11:22:15 +00:00
14 lines
226 B
HTML
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 %} |