{{ define "header" }} {{ template "header-navbar" . }} {{ end }} {{ define "content" }}
{{ template "navbar" . }}

{{ .Get "Euro Coin Mintages" }}

{{ .Get "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 eq .Code "nl" }}

{{ .Get "Additional Notes" }}

{{ end }}
{{ .GetC "Filter Method" "Header/Label" }} {{ template "mintages/filter-radio" (tuple .FilterBy "country" (.GetC "Country" "Header/Label")) }} {{ template "mintages/filter-radio" (tuple .FilterBy "year" (.GetC "Year" "Header/Label")) }}
{{ template "mintages/coin-type-radio" (tuple .Type "circ" (.Get "Circulation Coins")) }} {{ template "mintages/coin-type-radio" (tuple .Type "nifc" (.Get "NIFC / BU Sets")) }} {{ template "mintages/coin-type-radio" (tuple .Type "proof" (.Get "Proof Coins")) }}
{{ if and (eq .FilterBy "country") (gt (len .CountryMintages.Standard) 0) }}
{{ .Get "Standard Issue Coins" }}
{{ $p := .Printer }} {{ range .CountryMintages.Standard }} {{ range .Mintages }} {{ template "mintages/mintage-cell" (tuple . $p) }} {{ end }} {{ end }}
{{ .GetC "Year" "Header/Label" }} {{ .Printer.Ftom 0.01 }} {{ .Printer.Ftom 0.02 }} {{ .Printer.Ftom 0.05 }} {{ .Printer.Ftom 0.10 }} {{ .Printer.Ftom 0.20 }} {{ .Printer.Ftom 0.50 }} {{ .Printer.Ftom 1.00 }} {{ .Printer.Ftom 2.00 }}
{{- .Year -}} {{- if .Mintmark.Valid -}}  {{ .Mintmark.V }} {{- end -}}
{{ else if and (eq .FilterBy "year") (gt (len .YearMintages.Standard) 0) }}
{{ .Get "Standard Issue Coins" }}
{{ $p := .Printer }} {{ range .YearMintages.Standard }} {{ range .Mintages }} {{ template "mintages/mintage-cell" (tuple . $p) }} {{ end }} {{ end }}
{{ .GetC "Country" "Header/Label" }} {{ .Printer.Ftom 0.01 }} {{ .Printer.Ftom 0.02 }} {{ .Printer.Ftom 0.05 }} {{ .Printer.Ftom 0.10 }} {{ .Printer.Ftom 0.20 }} {{ .Printer.Ftom 0.50 }} {{ .Printer.Ftom 1.00 }} {{ .Printer.Ftom 2.00 }}
{{- .Country -}} {{- if .Mintmark.Valid -}}  {{ .Mintmark.V }} {{- end -}}
{{ end }} {{ if eq .FilterBy "country" }} {{ if ne (len .CountryMintages.Commemorative) 0 }}
{{ .Get "Commemorative Coins" }}
{{ $p := .Printer }} {{ range $i, $ := .CountryMintages.Commemorative }} {{ $y := .Year }} {{ $mm := .Mintmark }} {{ $ccs := .CCs }} {{ range $j, $cc := .CCs }} {{ if eq $j 0 }} {{ end }} {{ template "mintages/mintage-cell" (tuple .Mintage $p) }} {{ end }} {{ end }}
{{ .GetC "Year" "Header/Label" }} {{ .GetC "Commemorated Topic" "Header/Label" }} {{ .GetC "Mintage" "Header/Label" }}
{{- $y -}} {{- if $mm.Valid -}}  {{ $mm.V }} {{- end -}} {{ $p.GetC .Name "CC Name" }}
{{ end }} {{ else if eq .FilterBy "year" }} {{ if ne (len .YearMintages.Commemorative) 0 }}
{{ .Get "Commemorative Coins" }}
{{ $p := .Printer }} {{ range $i, $ := .YearMintages.Commemorative }} {{ $c := .Country }} {{ $mm := .Mintmark }} {{ $ccs := .CCs }} {{ range $j, $cc := .CCs }} {{ if eq $j 0 }} {{ end }} {{ template "mintages/mintage-cell" (tuple .Mintage $p) }} {{ end }} {{ end }}
{{ .GetC "Country" "Header/Label" }} {{ .GetC "Commemorated Topic" "Header/Label" }} {{ .GetC "Mintage" "Header/Label" }}
{{- $c -}} {{- if $mm.Valid -}}  {{ $mm.V }} {{- end -}} {{ $p.GetC .Name "CC Name" }}
{{ end }} {{ end }}
{{ end }} {{ define "mintages/coin-type-radio" }} {{ end }} {{ define "mintages/filter-radio" }} {{ $v := index . 1 }} {{ end }} {{ define "mintages/mintage-cell" }} {{ $v := index . 0 }} {{ $p := index . 1 }} {{ if not $v.Valid }} {{ $p.GetC "Unknown" "Header/Label" }} {{ else if eq $v.V 0 }} — {{ else }} {{ $p.Itoa $v.V }} {{ end }} {{ end }}