diff options
author | Thomas Voss <mail@thomasvoss.com> | 2025-08-02 01:43:26 +0200 |
---|---|---|
committer | Thomas Voss <mail@thomasvoss.com> | 2025-08-02 01:43:26 +0200 |
commit | 62df5a38c564bfe997c468d40e6d4d0988f348f3 (patch) | |
tree | 9d652844c64d7404b7f0b5e339b3a9a9e324ac5d | |
parent | bc1a4d3430f15a5dbe5e13ab4af5352c350d8077 (diff) |
Try to avoid placeholders when possible
-rw-r--r-- | src/templates/collecting-crh.html.tmpl | 22 |
1 files changed, 17 insertions, 5 deletions
diff --git a/src/templates/collecting-crh.html.tmpl b/src/templates/collecting-crh.html.tmpl index 9e34a4d..bf2736d 100644 --- a/src/templates/collecting-crh.html.tmpl +++ b/src/templates/collecting-crh.html.tmpl @@ -313,6 +313,12 @@ {{ $p.Get "Coin bags are available without fees for everyone. Smaller denominations are often not given out, and the coin bags you recieve are very large (there are reports of €1 bags containing 250 coins)." }} </p> + {{ else if eq .Code "hr" }} + + <p> + {{ $p.Get "We currently have no information regarding coin roll hunting in Croatia." }} + </p> + {{ else if eq .Code "ie" }} <p> @@ -388,6 +394,12 @@ {{ $p.Get "In general coin rolls are sold with for fee of €0.60 per roll, but we’re lacking a lot of information." }} </p> + {{ else if eq .Code "mc" }} + + <p> + {{ $p.Get "We currently have no information regarding coin roll hunting in Monaco." }} + </p> + {{ else if eq .Code "mt" }} {{ withTranslations "h3" @@ -499,18 +511,18 @@ {{ $p.Get "You can get an unlimited number of rolls for a €5 fee. You must be a customer of the bank." }} </p> - {{ else if eq .Code "va" }} + {{ else if eq .Code "sm" }} <p> - {{ $p.Get "Ask the Pope nicely and he’ll probably give you some Vatican coins for free." }} + {{ $p.Get "We currently have no information regarding coin roll hunting in San Marino." }} </p> - {{ else }} + {{ else if eq .Code "va" }} <p> - {{ $p.Get "We currently have no information regarding coin roll hunting in {Country}." - (map "Country" .Name) }} + {{ $p.Get "Ask the Pope nicely and he’ll probably give you some Vatican coins for free." }} </p> + {{ end }} </details> {{ end }} |