Skip to content

Commit

Permalink
ajout page creer terrain
Browse files Browse the repository at this point in the history
  • Loading branch information
aloundoye committed Sep 21, 2020
1 parent bcbcc68 commit c60b13c
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 59 deletions.
Empty file added public/admin/create.php
Empty file.
12 changes: 12 additions & 0 deletions public/admin/new.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<?php require_once('../../private/initialize.php');?>

<?php $page_title = 'Ajouter Terrain' ?>
<?php include(SHARED_PATH . '/admin_header.php') ?>


<!-- Page Heading -->
<h1 class="h3 mb-2 text-gray-800">Ajouter Terrain</h1>



<?php include(SHARED_PATH . '/admin_footer.php') ?>
68 changes: 9 additions & 59 deletions public/admin/terrains.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,85 +5,35 @@


<!-- Page Heading -->
<h1 class="h3 mb-2 text-gray-800">Tables</h1>
<p class="mb-4">DataTables is a third party plugin that is used to generate the demo table below. For more information about DataTables, please visit the <a target="_blank" href="https://datatables.net">official DataTables documentation</a>.</p>

<h1 class="h3 mb-2 text-gray-800">Terrains</h1>
<!-- DataTales Example -->
<div class="card shadow mb-4">
<div class="card-header py-3">
<h6 class="m-0 font-weight-bold text-primary">DataTables Example</h6>
<a href="" class="m-0 btn btn-info fa-pull-right"><i class="fas fa-plus"></i> Ajouter une nouvelle produit</a>
<h6 class="m-0 font-weight-bold text-primary">Détails Terrains</h6>
</div>
<div class="card-body">
<div class="table-responsive">
<table class="table table-bordered" id="dataTable" width="100%" cellspacing="0">
<thead>
<tr>
<th>Name</th>
<th>Position</th>
<th>Office</th>
<th>Age</th>
<th>Start date</th>
<th>Salary</th>
<th>Nom</th>
<th>Prix</th>
<th>Taille</th>
</tr>
</thead>
<tfoot>
<tr>
<th>Name</th>
<th>Position</th>
<th>Office</th>
<th>Age</th>
<th>Start date</th>
<th>Salary</th>
<th>Nom</th>
<th>Prix</th>
<th>Taille</th>
</tr>
</tfoot>
<tbody>
<tr>
<td>Tiger Nixon</td>
<td>System Architect</td>
<td>Edinburgh</td>
<td>61</td>
<td>2011/04/25</td>
<td>$320,800</td>
</tr>
<tr>
<td>Garrett Winters</td>
<td>Accountant</td>
<td>Tokyo</td>
<td>63</td>
<td>2011/07/25</td>
<td>$170,750</td>
</tr>
<tr>
<td>Ashton Cox</td>
<td>Junior Technical Author</td>
<td>San Francisco</td>
<td>66</td>
<td>2009/01/12</td>
<td>$86,000</td>
</tr>
<tr>
<td>Cedric Kelly</td>
<td>Senior Javascript Developer</td>
<td>Edinburgh</td>
<td>22</td>
<td>2012/03/29</td>
<td>$433,060</td>
</tr>
<tr>
<td>Airi Satou</td>
<td>Accountant</td>
<td>Tokyo</td>
<td>33</td>
<td>2008/11/28</td>
<td>$162,700</td>
</tr>
<tr>
<td>Brielle Williamson</td>
<td>Integration Specialist</td>
<td>New York</td>
<td>61</td>
<td>2012/12/02</td>
<td>$372,000</td>
</tr>
</tbody>
</table>
Expand Down

0 comments on commit c60b13c

Please sign in to comment.