{% extends "base.html" %} {% load humanize %} {% block style %} body { font-family: sans-serif } .files { color: #000; background: #fff; border-collapse: collapse} .dirname, .basename {font-family:monospace} .dirname { color: #777; font-size: 80%; } .date { font-size: 70%; text-align: right } .row1 { background: #fff } .row2 { background: #eee } {% endblock %} {% block content %} {% for file in files %} {% endfor %}
{{ file.dirname }}/ {{ file.when_changed|naturaltime }}
{{ file.basename }}
{% endblock %}