Compare commits

...

2 commits

Author SHA1 Message Date
teutat3s 5f43209a5e
No comma for the final Greeting 2024-06-21 17:21:36 +02:00
teutat3s d0f8ad672a
Don't hardcode username in template 2024-06-21 17:21:35 +02:00

View file

@ -385,16 +385,17 @@ footer .notes {
<p>
Bitte überweisen Sie den Rechnungsbetrag innerhalb von <?php echo (-1 * $invoice->days_overdue); ?> Tagen auf untenstehendes Konto:<br />
Inhaber: <?php echo $invoice->user_name; ?><br />
IBAN: <?php echo $invoice->user_iban; ?>
IBAN: <?php echo $invoice->user_iban; ?><br />
<?php echo invoice_qrcode($invoice->invoice_id); ?>
</p>
<?php else: ?>
</p>Vielen Dank!<p>
<?php endif; ?>
<p>
Mit freundlichen Grüßen,<br />
Mit freundlichen Grüßen<br />
<br />
Benjamin Yule Bädorf
<?php echo $invoice->user_name; ?>
</p>
</footer>