mirror of https://github.com/go-gitea/gitea.git
Fixed 0 closed issues not show 50% closed on activty page (#3802)
Fixes #3656. Also adds a light grey bar when there are both 0 merged prs/closed issues and 0 open prs/issues.
This commit is contained in:
parent
804bc0aa2f
commit
5ba4ba3957
|
@ -30,9 +30,13 @@
|
||||||
<div class="column">
|
<div class="column">
|
||||||
{{if gt .Activity.ActivePRCount 0}}
|
{{if gt .Activity.ActivePRCount 0}}
|
||||||
<div class="stats-table">
|
<div class="stats-table">
|
||||||
<a href="#merged-pull-requests" class="table-cell tiny background purple" style="width: {{.Activity.MergedPRPerc}}%"></a>
|
<a href="#merged-pull-requests" class="table-cell tiny background purple" style="width: {{.Activity.MergedPRPerc}}{{if ne .Activity.MergedPRPerc 0}}%{{end}}"></a>
|
||||||
<a href="#proposed-pull-requests" class="table-cell tiny background green"></a>
|
<a href="#proposed-pull-requests" class="table-cell tiny background green"></a>
|
||||||
</div>
|
</div>
|
||||||
|
{{else}}
|
||||||
|
<div class="stats-table">
|
||||||
|
<a class="table-cell tiny background light grey"></a>
|
||||||
|
</div>
|
||||||
{{end}}
|
{{end}}
|
||||||
{{.i18n.Tr (TrN .i18n.Lang .Activity.ActivePRCount "repo.activity.active_prs_count_1" "repo.activity.active_prs_count_n") .Activity.ActivePRCount | Safe }}
|
{{.i18n.Tr (TrN .i18n.Lang .Activity.ActivePRCount "repo.activity.active_prs_count_1" "repo.activity.active_prs_count_n") .Activity.ActivePRCount | Safe }}
|
||||||
</div>
|
</div>
|
||||||
|
@ -41,9 +45,13 @@
|
||||||
<div class="column">
|
<div class="column">
|
||||||
{{if gt .Activity.ActiveIssueCount 0}}
|
{{if gt .Activity.ActiveIssueCount 0}}
|
||||||
<div class="stats-table">
|
<div class="stats-table">
|
||||||
<a href="#closed-issues" class="table-cell tiny background red" style="width: {{.Activity.ClosedIssuePerc}}%"></a>
|
<a href="#closed-issues" class="table-cell tiny background red" style="width: {{.Activity.ClosedIssuePerc}}{{if ne .Activity.ClosedIssuePerc 0}}%{{end}}"></a>
|
||||||
<a href="#new-issues" class="table-cell tiny background green"></a>
|
<a href="#new-issues" class="table-cell tiny background green"></a>
|
||||||
</div>
|
</div>
|
||||||
|
{{else}}
|
||||||
|
<div class="stats-table">
|
||||||
|
<a class="table-cell tiny background light grey"></a>
|
||||||
|
</div>
|
||||||
{{end}}
|
{{end}}
|
||||||
{{.i18n.Tr (TrN .i18n.Lang .Activity.ActiveIssueCount "repo.activity.active_issues_count_1" "repo.activity.active_issues_count_n") .Activity.ActiveIssueCount | Safe }}
|
{{.i18n.Tr (TrN .i18n.Lang .Activity.ActiveIssueCount "repo.activity.active_issues_count_1" "repo.activity.active_issues_count_n") .Activity.ActiveIssueCount | Safe }}
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in New Issue