You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

template.go 1.0KB

123456789101112131415161718192021222324252627
  1. // Copyright 2014 The Gogs Authors. All rights reserved.
  2. // Use of this source code is governed by a MIT-style
  3. // license that can be found in the LICENSE file.
  4. package dev
  5. import (
  6. "code.gitea.io/gitea/models"
  7. "code.gitea.io/gitea/modules/base"
  8. "code.gitea.io/gitea/modules/context"
  9. "code.gitea.io/gitea/modules/setting"
  10. "code.gitea.io/gitea/modules/timeutil"
  11. )
  12. // TemplatePreview render for previewing the indicated template
  13. func TemplatePreview(ctx *context.Context) {
  14. ctx.Data["User"] = models.User{Name: "Unknown"}
  15. ctx.Data["AppName"] = setting.AppName
  16. ctx.Data["AppVer"] = setting.AppVer
  17. ctx.Data["AppUrl"] = setting.AppURL
  18. ctx.Data["Code"] = "2014031910370000009fff6782aadb2162b4a997acb69d4400888e0b9274657374"
  19. ctx.Data["ActiveCodeLives"] = timeutil.MinutesToFriendly(setting.Service.ActiveCodeLives, ctx.Locale.Language())
  20. ctx.Data["ResetPwdCodeLives"] = timeutil.MinutesToFriendly(setting.Service.ResetPwdCodeLives, ctx.Locale.Language())
  21. ctx.Data["CurDbValue"] = ""
  22. ctx.HTML(200, base.TplName(ctx.Params("*")))
  23. }