Commit b7631bd64da7e26ee60082b02084f31d9a2430b4

Authored by grouille
1 parent 439ed518

Affichage du réseau

Showing 1 changed file with 3 additions and 7 deletions   Show diff stats
site/network.php
... ... @@ -18,7 +18,7 @@ $raspberrys = getRaspberrys();
18 18 <table class="table table-striped table-hover table-bordered">
19 19 <thead class="thead-dark">
20 20 <th width="15%"><img src="img/pi.png" alt="Raspberry" style="width:auto; height:50px;"></th>
21   - <th width="85%" colspan="3"><p style="font-size: 14px;"><?php echo $ip;?></p></th>
  21 + <th width="85%" colspan="2"><p style="font-size: 14px;"><?php echo $ip;?></p></th>
22 22 </thead>
23 23 <tbody>
24 24 <?php
... ... @@ -38,12 +38,8 @@ $raspberrys = getRaspberrys();
38 38 }
39 39 ?>
40 40 <td><img src="<?php echo $source;?>" alt="Capteur" style="width:auto; height:50px;"></td>
41   - <?php
42   -
43   - ?>
44   - <td>ok</td>
45   - <td>ok</td>
46   - <td>ok</td>
  41 + <td><p style="font-size: 14px;"><?php echo $capteur['nom'];?></p></td>
  42 + <td><p style="font-size: 14px;"><?php echo $capteur['unite'];?></p></td>
47 43 </tr>
48 44 <?php
49 45 }
... ...