You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
590 B
23 lines
590 B
<!DOCTYPE html>
|
|
<html>
|
|
<body>
|
|
<div>
|
|
<h2>Private Lists</h2>
|
|
<?php
|
|
if (isset($dataView)) {
|
|
foreach ($dataView as $liste){
|
|
echo $liste->nom;
|
|
echo '<br/>';
|
|
if($liste->taches != null){
|
|
foreach($liste->taches as $tache){
|
|
echo ' * '.$tache->nom;
|
|
echo '<br/>';
|
|
}
|
|
}
|
|
}
|
|
}
|
|
?>
|
|
|
|
</div>
|
|
</body>
|
|
</html>
|