first commit
This commit is contained in:
68
templates/backend_partner/reservation/encours.html.twig
Normal file
68
templates/backend_partner/reservation/encours.html.twig
Normal file
@@ -0,0 +1,68 @@
|
||||
{% extends 'base_backend_partner.html.twig' %}
|
||||
|
||||
{% block title %} Réservation {% endblock %}
|
||||
|
||||
{% block content %}
|
||||
|
||||
<!-- Page Heading -->
|
||||
<div class="d-sm-flex align-items-center justify-content-between mb-4">
|
||||
<h1 class="h3 mb-0 text-gray-800">Réservation</h1>
|
||||
<ol class="breadcrumb float-sm-right">
|
||||
<li class="breadcrumb-item active">Réservation</li>
|
||||
</ol>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<!-- Begin Page Content -->
|
||||
<div class="container-fluid">
|
||||
|
||||
{% include 'backend_admin/basic/notice.html.twig' %}
|
||||
|
||||
<!-- DataTales Example -->
|
||||
<div class="card shadow mb-4">
|
||||
|
||||
<div class="card-header py-3">
|
||||
<h6 class="m-0 font-weight-bold text-primary">Liste des Réservations Encours</h6>
|
||||
</div>
|
||||
<div class="card-body">
|
||||
<div class="table-responsive">
|
||||
<table class="table table-bordered" id="dataTablesSociete" width="100%" cellspacing="0">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>#</th>
|
||||
<th>Client</th>
|
||||
<th>Article</th>
|
||||
<th>Quantité</th>
|
||||
<th>Montant</th>
|
||||
<th>Avance (payer en site)</th>
|
||||
<th>Reste (payer en société)</th>
|
||||
<th>Date Réglement</th>
|
||||
<th>Détail</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tfoot>
|
||||
<tr>
|
||||
<th>#</th>
|
||||
<th>Client</th>
|
||||
<th>Article</th>
|
||||
<th>Quantité</th>
|
||||
<th>Montant</th>
|
||||
<th>Avance (payer en site)</th>
|
||||
<th>Reste (payer en société)</th>
|
||||
<th>Date Réglement</th>
|
||||
<th>Détail</th>
|
||||
</tr>
|
||||
</tfoot>
|
||||
<tbody>
|
||||
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
{% endblock %}
|
||||
Reference in New Issue
Block a user