2014-03-19 12:50:44 -04: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 (
|
2016-11-10 11:24:48 -05:00
|
|
|
"code.gitea.io/gitea/models"
|
|
|
|
"code.gitea.io/gitea/modules/base"
|
|
|
|
"code.gitea.io/gitea/modules/context"
|
|
|
|
"code.gitea.io/gitea/modules/setting"
|
2014-03-19 12:50:44 -04:00
|
|
|
)
|
|
|
|
|
2016-11-17 22:03:03 -05:00
|
|
|
// TemplatePreview render for previewing the indicated template
|
2016-03-11 11:56:52 -05:00
|
|
|
func TemplatePreview(ctx *context.Context) {
|
2014-03-19 12:50:44 -04:00
|
|
|
ctx.Data["User"] = models.User{Name: "Unknown"}
|
2014-05-25 20:11:25 -04:00
|
|
|
ctx.Data["AppName"] = setting.AppName
|
|
|
|
ctx.Data["AppVer"] = setting.AppVer
|
2016-11-27 05:14:25 -05:00
|
|
|
ctx.Data["AppUrl"] = setting.AppURL
|
2014-03-19 12:50:44 -04:00
|
|
|
ctx.Data["Code"] = "2014031910370000009fff6782aadb2162b4a997acb69d4400888e0b9274657374"
|
2017-06-28 01:43:28 -04:00
|
|
|
ctx.Data["ActiveCodeLives"] = base.MinutesToFriendly(setting.Service.ActiveCodeLives, ctx.Locale.Language())
|
|
|
|
ctx.Data["ResetPwdCodeLives"] = base.MinutesToFriendly(setting.Service.ResetPwdCodeLives, ctx.Locale.Language())
|
2014-05-01 06:55:39 -04:00
|
|
|
ctx.Data["CurDbValue"] = ""
|
2015-09-17 01:54:12 -04:00
|
|
|
|
2014-07-26 00:24:27 -04:00
|
|
|
ctx.HTML(200, base.TplName(ctx.Params("*")))
|
2014-03-19 12:50:44 -04:00
|
|
|
}
|