2014-03-19 10:50:44 -06: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 (
|
2021-04-05 09:30:52 -06:00
|
|
|
"net/http"
|
|
|
|
|
2021-11-24 02:49:20 -07:00
|
|
|
user_model "code.gitea.io/gitea/models/user"
|
2016-11-10 09:24:48 -07:00
|
|
|
"code.gitea.io/gitea/modules/base"
|
|
|
|
"code.gitea.io/gitea/modules/context"
|
|
|
|
"code.gitea.io/gitea/modules/setting"
|
2019-08-15 08:46:21 -06:00
|
|
|
"code.gitea.io/gitea/modules/timeutil"
|
2014-03-19 10:50:44 -06:00
|
|
|
)
|
|
|
|
|
2016-11-17 20:03:03 -07:00
|
|
|
// TemplatePreview render for previewing the indicated template
|
2016-03-11 09:56:52 -07:00
|
|
|
func TemplatePreview(ctx *context.Context) {
|
2021-11-24 02:49:20 -07:00
|
|
|
ctx.Data["User"] = user_model.User{Name: "Unknown"}
|
2014-05-25 18:11:25 -06:00
|
|
|
ctx.Data["AppName"] = setting.AppName
|
|
|
|
ctx.Data["AppVer"] = setting.AppVer
|
2016-11-27 03:14:25 -07:00
|
|
|
ctx.Data["AppUrl"] = setting.AppURL
|
2014-03-19 10:50:44 -06:00
|
|
|
ctx.Data["Code"] = "2014031910370000009fff6782aadb2162b4a997acb69d4400888e0b9274657374"
|
2019-08-15 08:46:21 -06:00
|
|
|
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 04:55:39 -06:00
|
|
|
ctx.Data["CurDbValue"] = ""
|
2015-09-16 23:54:12 -06:00
|
|
|
|
2021-04-05 09:30:52 -06:00
|
|
|
ctx.HTML(http.StatusOK, base.TplName(ctx.Params("*")))
|
2014-03-19 10:50:44 -06:00
|
|
|
}
|