Added all modified files to allow branching

This commit is contained in:
2019-05-21 11:15:41 +02:00
parent 6209d1aca6
commit 852f110967
8 changed files with 267 additions and 5 deletions

View File

@@ -66,6 +66,15 @@ defined('_JEXEC') or die;
<?php if(! $this->isNew): ?>
<tr>
<td>Angebote</td>
<td>
<?php foreach($this->offers as $o): ?>
<input type='checkbox' name='offers' value='<?php echo $o['offer']->getId(); ?>' <?php if($o['mark']) echo 'checked="checked"';?>>
<?php echo htmlentities($o['offer']->getName()); ?><br />
<?php endforeach; ?>
</td>
</tr>
<tr>
<td>ID</td>
<td><?php echo $this->object->getId(); ?></td>