generated from Templates_CodeFirst/templateHtmlCss
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.
33 lines
647 B
33 lines
647 B
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Ajouter une Liste</title>
|
|
<link rel="stylesheet" href="Style/bootstrap.css">
|
|
</head>
|
|
|
|
<?php
|
|
|
|
$dataView[]=new Liste(12, "test", false, null, array());
|
|
$dataView[]=new Liste(12, "belle bite", false, null, array());
|
|
|
|
if (isset($dataView)):
|
|
foreach ($dataView as $list){
|
|
?>
|
|
<div class="container">
|
|
<div class="row">
|
|
<div class="col">
|
|
<?php echo $list->getName(); ?>
|
|
</div>
|
|
<button class="col">
|
|
Modifer la liste
|
|
</button>
|
|
|
|
</div>
|
|
</div>
|
|
<?php
|
|
}
|
|
|
|
endif;
|
|
|
|
?>
|