kpsul/kfet/templates/kfet/checkoutstatement.html

14 lines
205 B
HTML
Raw Normal View History

2016-08-11 15:14:23 +02:00
{% extends "kfet/base.html" %}
{% block title %}Relevés{% endblock %}
{% block content %}
<ul>
{% for statement in checkoutstatements %}
<li>{{ statement }}</li>
{% endfor %}
</ul>
{% endblock %}