From 323c0b0ff9c4c337c92c8bdab9b231929eb935d7 Mon Sep 17 00:00:00 2001 From: Nicolai Ort Date: Tue, 3 Dec 2024 16:29:58 +0100 Subject: [PATCH] feat(templates): English Contract template --- templates/contract/en.html | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/templates/contract/en.html b/templates/contract/en.html index d7bd125..583d6ca 100644 --- a/templates/contract/en.html +++ b/templates/contract/en.html @@ -25,9 +25,9 @@ - {{#each runners}} + {{ range .Runners }}
- +
@@ -40,35 +40,35 @@

-

On the occasion of the {{eventname}} I/We want to support

+

On the occasion of the {{ $.EventName }} I/We want to support

- {{this.firstname}} - {{this.middlename}} + {{ .FirstName }} + {{ .MiddleName }}

First name

- {{this.id}} + {{ .ID }}

ID

+ src="{{/* TODO: BARCODE*/}}" />
- {{this.lastname}} + {{ .LastName }}

Last Name

- {{this.group.fullName}} + {{ .Group.Name}}

Team/class

-

with the amount of _____{{currency_symbol}} per kilometer run.

+

with the amount of _____{{ $.CurrencySymbol }} per kilometer run.

@@ -80,7 +80,7 @@

Address (Sponsor)

-

(You have to provide an address if you want a donation receipt - Donation receipts can't be issued for total donation amounts under {{sponsoring_receipt_minimum_amount}}{{currency_symbol}})

+

(You have to provide an address if you want a donation receipt - Donation receipts can't be issued for total donation amounts under {{ $.ReceiptMinimumAmount }}{{ $.CurrencySymbol }})

@@ -111,10 +111,10 @@

Signature

-

{{../disclaimer}}

+

{{ $.Disclaimer }}

- {{/each}} + {{ end }} \ No newline at end of file