2014-03-19 22:20:44 +05:30
|
|
|
// 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 21:54:48 +05:30
|
|
|
"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 22:20:44 +05:30
|
|
|
)
|
|
|
|
|
2016-11-18 08:33:03 +05:30
|
|
|
// TemplatePreview render for previewing the indicated template
|
2016-03-11 22:26:52 +05:30
|
|
|
func TemplatePreview(ctx *context.Context) {
|
2014-03-19 22:20:44 +05:30
|
|
|
ctx.Data["User"] = models.User{Name: "Unknown"}
|
2014-05-26 05:41:25 +05:30
|
|
|
ctx.Data["AppName"] = setting.AppName
|
|
|
|
ctx.Data["AppVer"] = setting.AppVer
|
2016-11-27 15:44:25 +05:30
|
|
|
ctx.Data["AppUrl"] = setting.AppURL
|
2014-03-19 22:20:44 +05:30
|
|
|
ctx.Data["Code"] = "2014031910370000009fff6782aadb2162b4a997acb69d4400888e0b9274657374"
|
2017-06-28 11:13:28 +05:30
|
|
|
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 16:25:39 +05:30
|
|
|
ctx.Data["CurDbValue"] = ""
|
2015-09-17 11:24:12 +05:30
|
|
|
|
2014-07-26 09:54:27 +05:30
|
|
|
ctx.HTML(200, base.TplName(ctx.Params("*")))
|
2014-03-19 22:20:44 +05:30
|
|
|
}
|