Compare commits

...

3 commits

Author SHA1 Message Date
teutat3s f046b789dd
Update gitignore 2024-06-17 00:33:46 +02:00
teutat3s 4e77e51bf2
flake: update description 2024-06-17 00:33:29 +02:00
teutat3s a779b7d594
Don't hardcode username in template 2024-06-17 00:32:52 +02:00
3 changed files with 5 additions and 3 deletions

1
.gitignore vendored
View file

@ -1 +1,2 @@
tags
result

View file

@ -1,5 +1,5 @@
{
description = "b12f invoiceplane template";
description = "teutat3s invoiceplane template";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-23.11";

View file

@ -385,7 +385,8 @@ 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>
@ -394,7 +395,7 @@ footer .notes {
<p>
Mit freundlichen Grüßen,<br />
<br />
Benjamin Yule Bädorf
<?php echo $invoice->user_name; ?>
</p>
</footer>