Use ISO date format instead of hard-coded English date format for date range in repo activity page (#21396)
January 2, 2006 -> 2006-01-02 Signed-off-by: Yarden Shoham <hrsi88@gmail.com>
This commit is contained in:
parent
1428877c37
commit
2d4c6321c3
1 changed files with 2 additions and 2 deletions
|
@ -47,8 +47,8 @@ func Activity(ctx *context.Context) {
|
||||||
ctx.Data["Period"] = "weekly"
|
ctx.Data["Period"] = "weekly"
|
||||||
timeFrom = timeUntil.Add(-time.Hour * 168)
|
timeFrom = timeUntil.Add(-time.Hour * 168)
|
||||||
}
|
}
|
||||||
ctx.Data["DateFrom"] = timeFrom.Format("January 2, 2006")
|
ctx.Data["DateFrom"] = timeFrom.Format("2006-01-02")
|
||||||
ctx.Data["DateUntil"] = timeUntil.Format("January 2, 2006")
|
ctx.Data["DateUntil"] = timeUntil.Format("2006-01-02")
|
||||||
ctx.Data["PeriodText"] = ctx.Tr("repo.activity.period." + ctx.Data["Period"].(string))
|
ctx.Data["PeriodText"] = ctx.Tr("repo.activity.period." + ctx.Data["Period"].(string))
|
||||||
|
|
||||||
var err error
|
var err error
|
||||||
|
|
Reference in a new issue