|
|
|
@@ -0,0 +1,24 @@ |
|
|
|
package admin |
|
|
|
|
|
|
|
import ( |
|
|
|
"code.gitea.io/gitea/modules/base" |
|
|
|
"code.gitea.io/gitea/modules/context" |
|
|
|
) |
|
|
|
|
|
|
|
const ( |
|
|
|
tplResourceQueue base.TplName = "admin/resource/queue" |
|
|
|
tplResourceSpecification base.TplName = "admin/resource/specification" |
|
|
|
tplResourceScene base.TplName = "admin/resource/scene" |
|
|
|
) |
|
|
|
|
|
|
|
func GetQueuePage(ctx *context.Context) { |
|
|
|
ctx.HTML(200, tplResourceQueue) |
|
|
|
} |
|
|
|
|
|
|
|
func GetSpecificationPage(ctx *context.Context) { |
|
|
|
ctx.HTML(200, tplResourceSpecification) |
|
|
|
} |
|
|
|
|
|
|
|
func GetScenePage(ctx *context.Context) { |
|
|
|
ctx.HTML(200, tplResourceScene) |
|
|
|
} |