Exemplo n.º 1
0
<!-- vue : practicien/liste -->
<div class="row">
	<div class="col-xs-12">
		<div class="panel panel-default">
			<div class="panel-heading"><h3 class="panel-title"><i class="fa fa-list-alt fa-fw"></i> Liste des praticiens</h3></div>
			<div class="panel-body">
				<?php 
if ($lesPraticiensSontVide) {
    ?>
					<h3 class="text-center">Aucun praticien</h3>
				<?php 
} else {
    ?>
					<?php 
    OutilsForm::info("Cliquer sur un praticien pour avoir plus de détail");
    ?>
					<div class="dataTable_wrapper">
						<table class="table table-hover" id="DataTablePraticien">
							<thead>
								<tr>
									<th>#</th>
									<th>Nom</th>  
									<th>Prénom</th> 
									<th>Adresse</th>
									<th>Code postal</th>
									<th>Ville</th>
								</tr>
							</thead>
							<tbody> 
							<?php 
    foreach ($lesPraticiens as $unPraticien) {
Exemplo n.º 2
0
<!-- vue : compte-rendu/liste -->
<div class="row">
	<div class="col-xs-12">
		<div class="panel panel-default">
			<div class="panel-heading"><h3 class="panel-title"><i class="fa fa-list-alt fa-fw"></i> Liste de mes comptes rendus</h3></div>
			<div class="panel-body">
				<?php 
if ($lesComptesRendusDuVisiteurSontVide) {
    ?>
					<h3 class="text-center">Aucun compte-rendu</h3>
				<?php 
} else {
    ?>
					<?php 
    OutilsForm::info("Cliquer sur un compte rendu pour avoir plus de détail");
    ?>
					<div class="dataTable_wrapper">
						<table class="table table-hover" id="DataTableCompteRendu">
							<thead>
								<tr>
									<th>#</th>
									<th>Praticien</th>
									<th>Date</th>
									<th>Date de visite</th>
									<th>Bilan</th>
									<th>Motif</th>
								</tr>
							</thead>
							<tbody> 
							<?php 
    foreach ($lesComptesRendusDuVisiteur as $unCompteRendu) {
Exemplo n.º 3
0
<!-- vue : medicament/liste -->
<div class="row">
	<div class="col-xs-12">
		<div class="panel panel-default">
			<div class="panel-heading"><h3 class="panel-title"><i class="fa fa-list-alt fa-fw"></i> Liste des praticiens</h3></div>
			<div class="panel-body">
				<?php 
if ($lesMedicamentsSontVide) {
    ?>
					<h3 class="text-center">Aucun Medicaments</h3>
				<?php 
} else {
    ?>
					<?php 
    OutilsForm::info("Cliquer sur un médicament pour avoir plus de détail");
    ?>
					<div class="dataTable_wrapper">
						<table class="table table-hover" id="DataTableMedicaments">
							<thead>
								<tr>
									<th>Dépot legal</th>  
									<th>Nom</th> 
								</tr>
							</thead>
							<tbody> 
							<?php 
    foreach ($lesMedicaments as $unMedicament) {
        ?>
								<tr class="link" onclick="location.href='<?php 
        echo OutilsUrl::composer("medicament", "details", "depot=" . $unMedicament["MED_DEPOTLEGAL"]);
        ?>