22 lines
512 B
HTML
22 lines
512 B
HTML
{% extends "kfet/base.html" %}
|
|
|
|
{% block title %}Caisses{% endblock %}
|
|
{% block content-header-title %}Caisses{% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
<div class="row">
|
|
<div class="col-lg-12">
|
|
<div class="btn-group btn-group-lg">
|
|
<a class="btn btn-primary" href="{% url 'kfet.checkout.create' %}">Créer une caisse</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<ul>
|
|
{% for checkout in checkouts %}
|
|
<li><a href="{% url 'kfet.checkout.read' checkout.pk %}">{{ checkout }}</a></li>
|
|
{% endfor %}
|
|
</ul>
|
|
|
|
{% endblock %}
|