gitea/routers/dev/template.go

28 lines
1.0 KiB
Go
Raw Normal View History

2014-03-19 17:50:44 +01:00
// Copyright 2014 The Gogs Authors. All rights reserved.
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file.
package dev
import (
"code.gitea.io/gitea/models"
"code.gitea.io/gitea/modules/base"
"code.gitea.io/gitea/modules/context"
"code.gitea.io/gitea/modules/setting"
"code.gitea.io/gitea/modules/timeutil"
2014-03-19 17:50:44 +01:00
)
// TemplatePreview render for previewing the indicated template
2016-03-11 17:56:52 +01:00
func TemplatePreview(ctx *context.Context) {
2014-03-19 17:50:44 +01:00
ctx.Data["User"] = models.User{Name: "Unknown"}
2014-05-26 02:11:25 +02:00
ctx.Data["AppName"] = setting.AppName
ctx.Data["AppVer"] = setting.AppVer
ctx.Data["AppUrl"] = setting.AppURL
2014-03-19 17:50:44 +01:00
ctx.Data["Code"] = "2014031910370000009fff6782aadb2162b4a997acb69d4400888e0b9274657374"
ctx.Data["ActiveCodeLives"] = timeutil.MinutesToFriendly(setting.Service.ActiveCodeLives, ctx.Locale.Language())
ctx.Data["ResetPwdCodeLives"] = timeutil.MinutesToFriendly(setting.Service.ResetPwdCodeLives, ctx.Locale.Language())
2014-05-01 12:55:39 +02:00
ctx.Data["CurDbValue"] = ""
2014-07-26 06:24:27 +02:00
ctx.HTML(200, base.TplName(ctx.Params("*")))
2014-03-19 17:50:44 +01:00
}