Skip to content
Snippets Groups Projects
Commit 03e42b89 authored by clement's avatar clement
Browse files

c

parent ba18f53c
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 $formConf->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; ?>
</tr>
<?php endforeach; ?>
</tbody>
</table>
<?php echo $formConf->getAlerts(); ?>
<form role="form" method="post">
<input type="hidden" name="submitForm" value="1">
<?php foreach($formConf->getFields() as $field): ?>
<?php echo $field->html($formConf); ?>
<?php endforeach; ?>
<button type="submit" class="btn btn-default"><?php echo $formConf->getSubmitText(); ?></button>
</form>
</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