forked from gitea/gitea
1
0
Fork 0
gitea/routers/dev/template.go

28 lines
955 B
Go
Raw Normal View History

2014-03-20 00:50:44 +08: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 (
2014-03-31 00:11:28 +08:00
"github.com/go-martini/martini"
2014-03-20 00:50:44 +08:00
"github.com/gogits/gogs/models"
"github.com/gogits/gogs/modules/base"
2014-03-20 00:50:44 +08:00
"github.com/gogits/gogs/modules/middleware"
2014-05-26 08:11:25 +08:00
"github.com/gogits/gogs/modules/setting"
2014-03-20 00:50:44 +08:00
)
func TemplatePreview(ctx *middleware.Context, params martini.Params) {
ctx.Data["User"] = models.User{Name: "Unknown"}
2014-05-26 08:11:25 +08:00
ctx.Data["AppName"] = setting.AppName
ctx.Data["AppVer"] = setting.AppVer
ctx.Data["AppUrl"] = setting.AppUrl
ctx.Data["AppLogo"] = setting.AppLogo
2014-03-20 00:50:44 +08:00
ctx.Data["Code"] = "2014031910370000009fff6782aadb2162b4a997acb69d4400888e0b9274657374"
2014-05-26 08:11:25 +08:00
ctx.Data["ActiveCodeLives"] = setting.Service.ActiveCodeLives / 60
ctx.Data["ResetPwdCodeLives"] = setting.Service.ResetPwdCodeLives / 60
2014-05-01 18:55:39 +08:00
ctx.Data["CurDbValue"] = ""
ctx.HTML(200, base.TplName(params["_1"]))
2014-03-20 00:50:44 +08:00
}