forked from DGNum/gestioCOF
33 lines
1 KiB
HTML
33 lines
1 KiB
HTML
{% extends 'kfet/base.html' %}
|
|
|
|
{% block title %}Modification d'un relevé{% endblock %}
|
|
{% block content-header-title %}
|
|
Caisse {{ checkout.name }} - Modification relevé {{ checkoutstatement.at }}
|
|
{% 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 form-only">
|
|
<div class="content-form">
|
|
<form submit="" method="post" class="form-horizontal">
|
|
{% csrf_token %}
|
|
{% include 'kfet/form_snippet.html' with form=form %}
|
|
{% if not perms.kfet.change_checkoutstatement %}
|
|
{% include 'kfet/form_authentication_snippet.html' %}
|
|
{% endif %}
|
|
{% include 'kfet/form_submit_snippet.html' with value="Enregistrer" %}
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
{% endblock %}
|