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 (
|
2016-11-10 17:24:48 +01: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 17:50:44 +01:00
|
|
|
)
|
|
|
|
|
2016-11-18 04:03:03 +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
|
2016-11-27 11:14:25 +01:00
|
|
|
ctx.Data["AppUrl"] = setting.AppURL
|
2014-03-19 17:50:44 +01:00
|
|
|
ctx.Data["Code"] = "2014031910370000009fff6782aadb2162b4a997acb69d4400888e0b9274657374"
|
2017-05-29 09:35:47 +02:00
|
|
|
ctx.Data["ActiveCodeLives"] = base.MinutesToFriendly(setting.Service.ActiveCodeLives)
|
|
|
|
ctx.Data["ResetPwdCodeLives"] = base.MinutesToFriendly(setting.Service.ResetPwdCodeLives)
|
2014-05-01 12:55:39 +02:00
|
|
|
ctx.Data["CurDbValue"] = ""
|
2015-09-17 07:54:12 +02:00
|
|
|
|
2014-07-26 06:24:27 +02:00
|
|
|
ctx.HTML(200, base.TplName(ctx.Params("*")))
|
2014-03-19 17:50:44 +01:00
|
|
|
}
|