7 changed files with 50 additions and 4 deletions
@ -0,0 +1,15 @@ |
|||||||
|
package repo |
||||||
|
|
||||||
|
import ( |
||||||
|
"code.gitea.io/gitea/modules/base" |
||||||
|
"code.gitea.io/gitea/modules/context" |
||||||
|
"net/http" |
||||||
|
) |
||||||
|
|
||||||
|
const ( |
||||||
|
tplCompetences base.TplName = "repo/competences/list" |
||||||
|
) |
||||||
|
|
||||||
|
func Competences(ctx *context.Context) { |
||||||
|
ctx.HTML(http.StatusOK, tplCompetences) |
||||||
|
} |
@ -0,0 +1,15 @@ |
|||||||
|
package repo |
||||||
|
|
||||||
|
import ( |
||||||
|
"code.gitea.io/gitea/modules/base" |
||||||
|
"code.gitea.io/gitea/modules/context" |
||||||
|
"net/http" |
||||||
|
) |
||||||
|
|
||||||
|
const ( |
||||||
|
tplResources base.TplName = "repo/resources/list" |
||||||
|
) |
||||||
|
|
||||||
|
func Resources(ctx *context.Context) { |
||||||
|
ctx.HTML(http.StatusOK, tplResources) |
||||||
|
} |
Loading…
Reference in new issue