Merge branch 'fronkdev' into 'master'
Added tooltip to campaign count in PreorderProductPrice history list See merge request fronk/thetool!1688
This commit is contained in:
@@ -125,7 +125,11 @@
|
||||
<td class="text-monospace">€ <?=number_format($line->price_passive, 2, ",", ".")?></td>
|
||||
<td class="text-monospace"><?=($line->start_date) ? (new DateTime($line->start_date))->format("d.m.Y") : "-"?></td>
|
||||
<td class="text-monospace"><?=($line->end_date) ? (new DateTime($line->end_date))->format("d.m.Y") : "-"?></td>
|
||||
<td><?=(is_array($line->campaigns) && count($line->campaigns)) ? count($line->campaigns) : ""?></td>
|
||||
<?php if(is_array($line->campaigns) && count($line->campaigns)): ?>
|
||||
<td title="<?php foreach($line->campaigns as $c) { echo $c->name."\n"; } ?>"><?=count($line->campaigns)?></td>
|
||||
<?php else: ?>
|
||||
<td>0</td>
|
||||
<?php endif; ?>
|
||||
<td><?=$line->description?></td>
|
||||
<td title="Erstellt <?=date("d.m.Y", $line->create)?>"><?=$line->creator->name?></td>
|
||||
</tr>
|
||||
|
||||
@@ -92,7 +92,12 @@
|
||||
<td class="text-monospace">€ <?=number_format($line->price_setup, 2, ",", ".")?></td>
|
||||
<td class="text-monospace"><?=($line->start_date) ? (new DateTime($line->start_date))->format("d.m.Y") : "-"?></td>
|
||||
<td class="text-monospace"><?=($line->end_date) ? (new DateTime($line->end_date))->format("d.m.Y") : "-"?></td>
|
||||
<td><?=(is_array($line->campaigns) && count($line->campaigns)) ? count($line->campaigns) : ""?></td>
|
||||
<?php if(is_array($line->campaigns) && count($line->campaigns)): ?>
|
||||
<td title="<?php foreach($line->campaigns as $c) { echo $c->name."\n"; } ?>"><?=count($line->campaigns)?></td>
|
||||
<?php else: ?>
|
||||
<td>0</td>
|
||||
<?php endif; ?>
|
||||
|
||||
<td><?=$line->description?></td>
|
||||
<td title="Erstellt <?=date("d.m.Y H:i", $line->create)?>"><?=$line->creator->name?></td>
|
||||
</tr>
|
||||
|
||||
Reference in New Issue
Block a user