90e8ece783
- Auth K-Fêt fonctionne - Affichage repris
31 lines
875 B
HTML
31 lines
875 B
HTML
{% extends "kfet/base.html" %}
|
|
|
|
{% block title %}Nouveau relevé{% endblock %}
|
|
{% block content-header-title %}Caisse {{ checkout.name }} - Nouveau relevé{% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
<div class="row">
|
|
<div class="col-sm-4 col-md-3 col-content-left">
|
|
<div class="content-left">
|
|
{% include 'kfet/left_checkout.html' %}
|
|
</div>
|
|
</div>
|
|
<div class="col-sm-8 col-md-9 col-content-right">
|
|
{% include "kfet/base_messages.html" %}
|
|
<div class="content-right">
|
|
<div class="content-right-block">
|
|
<form action="" method="post">
|
|
{% csrf_token %}
|
|
{{ form.as_p }}
|
|
{% if not perms.ket.add_checkoutstatement %}
|
|
<input type="password" name="KFETPASSWORD">
|
|
{% endif %}
|
|
<input type="submit" value="Enregistrer">
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
{% endblock %}
|