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

c

parent 69a69ed7
No related branches found
No related tags found
No related merge requests found
......@@ -4,6 +4,15 @@
<h1><?php echo $formConf->getTitle(); ?></h1>
</div>
<?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>
<table class="table">
<thead>
<?php foreach($list->getLabels() as $field): ?>
......@@ -22,12 +31,6 @@
</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>
<a href="<?php echo $base_url.$page.'/edit'.$list->class.'?'.$line->_primaryAttr.'='.$line->{$line->_primaryAttr}() ?>" type="button" class="btn btn-warning">Payer</a>
</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