forgejo_fusion/templates/user/heatmap.tmpl
David Rotermund 49fe13eb4a
Some checks are pending
Integration tests for the release process / release-simulation (push) Waiting to run
10.0.0 base
2025-02-08 23:21:02 +01:00

13 lines
772 B
Go HTML Template

{{if .HeatmapData}}
<div id="user-heatmap" class="is-loading"
data-heatmap-data="{{JsonUtils.EncodeToString .HeatmapData}}"
data-locale-total-contributions="{{ctx.Locale.Tr "heatmap.number_of_contributions_in_the_last_12_months" (ctx.Locale.PrettyNumber .HeatmapTotalContributions)}}"
data-locale-contributions-zero="{{ctx.Locale.Tr "heatmap.contributions_zero"}}"
data-locale-contributions-format="{{ctx.Locale.Tr "heatmap.contributions_format"}}"
data-locale-contributions-one="{{ctx.Locale.Tr "heatmap.contributions_one"}}"
data-locale-contributions-few="{{ctx.Locale.Tr "heatmap.contributions_few"}}"
data-locale-more="{{ctx.Locale.Tr "heatmap.more"}}"
data-locale-less="{{ctx.Locale.Tr "heatmap.less"}}"
></div>
<div class="divider"></div>
{{end}}