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 845B

12345678910111213141516171819202122232425
  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. )
  11. func TemplatePreview(ctx *context.Context) {
  12. ctx.Data["User"] = models.User{Name: "Unknown"}
  13. ctx.Data["AppName"] = setting.AppName
  14. ctx.Data["AppVer"] = setting.AppVer
  15. ctx.Data["AppUrl"] = setting.AppUrl
  16. ctx.Data["Code"] = "2014031910370000009fff6782aadb2162b4a997acb69d4400888e0b9274657374"
  17. ctx.Data["ActiveCodeLives"] = setting.Service.ActiveCodeLives / 60
  18. ctx.Data["ResetPwdCodeLives"] = setting.Service.ResetPwdCodeLives / 60
  19. ctx.Data["CurDbValue"] = ""
  20. ctx.HTML(200, base.TplName(ctx.Params("*")))
  21. }