Skip to content
Snippets Groups Projects
Commit 73bfd458 authored by clement's avatar clement
Browse files

c

parent 071e9eff
No related branches found
No related tags found
No related merge requests found
<!-- Begin page content -->
<div class="container">
<div class="page-header">
<h1><?php echo $list->getTitle(); ?></h1>
</div>
<table class="table">
<thead>
<?php foreach($list->getLabels() as $field): ?>
<th><?php echo $field->label; ?></th>
<?php endforeach; ?>
<th></th>
</thead>
<tbody>
<?php foreach($list->getLines() as $line): ?>
<tr>
<?php foreach($line->getFields() as $field): ?>
<td><?php echo $field->show(); ?></td>
<?php endforeach; ?>
<td><a href="<?php echo $base_url.$page.'/detail'.$list->class.'?'.$line->_primaryAttr.'='.$line->{$line->_primaryAttr}() ?>" type="button" class="btn btn-warning">Editer</a></td>
</tr>
<?php endforeach; ?>
</tbody>
</table>
</div>
\ No newline at end of file
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