Skip to content
Snippets Groups Projects
Commit 5234675f authored by Matthieu Guffroy's avatar Matthieu Guffroy
Browse files

Merge branch 'master' of gitlab.utc.fr:nf17-camp-p14/clivi

parents 8d42061e 2832f287
No related branches found
No related tags found
No related merge requests found
<!-- Begin page content --> <!-- Begin page content -->
<div class="container"> <div class="container">
<div class="page-header"> <div class="page-header">
<img src="img/logo.png"/>
<h1>Clinique Vétérinaire</h1> <h1>Clinique Vétérinaire</h1>
</div> </div>
<p class="lead">Bienvenue sur l'outil de gestion de la clinique.</p> <p class="lead">Bienvenue sur l'outil de gestion de la clinique.</p>
......
...@@ -50,7 +50,7 @@ ...@@ -50,7 +50,7 @@
<tr> <tr>
<td><?php echo $ligne["nom"]; ?> </td> <td><?php echo $ligne["nom"]; ?> </td>
<td><?php echo $ligne["prenom"]; ?> </td> <td><?php echo $ligne["prenom"]; ?> </td>
<td><?php echo $ligne["prix"]; ?> </td> <td><?php echo number_format($ligne["prix"], 2, ',', ' '); ?> </td>
</tr> </tr>
<?php endforeach; ?> <?php endforeach; ?>
</tbody> </tbody>
...@@ -70,7 +70,7 @@ ...@@ -70,7 +70,7 @@
<tr> <tr>
<td><?php echo $ligne["nom"]; ?> </td> <td><?php echo $ligne["nom"]; ?> </td>
<td><?php echo $ligne["prenom"]; ?> </td> <td><?php echo $ligne["prenom"]; ?> </td>
<td><?php echo $ligne["prix_total"]; ?> </td> <td><?php echo number_format($ligne["prix_total"], 2, ',', ' '); ?> </td>
</tr> </tr>
<?php endforeach; ?> <?php endforeach; ?>
</tbody> </tbody>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment