package template import ( "strconv" "git.thomasvoss.com/euro-cash.eu/lib" "git.thomasvoss.com/euro-cash.eu/lib/mintage" ) const muntrolpakketLinkStart = `` var denoms = [...]float64{ 0.01, 0.02, 0.05, 0.10, 0.20, 0.50, 1.00, 2.00, } templ CoinsMintages() { {{ code := ctx.Value("code").(string) set := ctx.Value("set").(mintage.Set) p := ctx.Value("printer").(lib.Printer) }}
@navbar()

{ p.T("Euro Coin Mintages") }

{ p.T("Here you’ll be able to view all the known mintages for all coins. You’ll also be able to filter on country, denomination, etc. If you have any mintage data that’s missing from our site, feel free to contact us.") }


if code == "nl" {

{ p.T("Additional Notes") }

}
for _, x := range denoms { } for _, row := range set.Circ { for _, col := range row.Cols { switch col { case mintage.Unknown: case 0: default: } } }
{ p.T("Year") }{ p.Money(x, false) }
if row.Mintmark != "" { { strconv.Itoa(row.Year) } { row.Mintmark } } else { { strconv.Itoa(row.Year) } } { p.T("Unknown") }{ p.N(col) }
}