Archived
Template
1
0

Added multilanguage support

This commit is contained in:
uberswe
2022-01-29 10:21:05 +01:00
parent 3bbc858721
commit 1987a0b0ec
49 changed files with 2402 additions and 154 deletions

View File

@ -7,10 +7,7 @@ import (
// Admin renders the admin dashboard
func (controller Controller) Admin(c *gin.Context) {
pd := PageData{
Title: "Admin",
IsAuthenticated: isAuthenticated(c),
CacheParameter: controller.config.CacheParameter,
}
pd := controller.DefaultPageData(c)
pd.Title = pd.Trans("Admin")
c.HTML(http.StatusOK, "admin.html", pd)
}