2015-11-26 02:10:25 +01:00
|
|
|
{{template "base/head" .}}
|
2023-02-01 23:56:10 +01:00
|
|
|
<div role="main" aria-label="{{.Title}}" class="page-content repository wiki new">
|
2015-12-07 23:30:52 +01:00
|
|
|
{{template "repo/header" .}}
|
|
|
|
<div class="ui container">
|
|
|
|
{{template "base/alert" .}}
|
2023-08-31 04:29:59 +02:00
|
|
|
<div class="ui header flex-text-block gt-sb">
|
2023-09-25 10:56:50 +02:00
|
|
|
{{ctx.Locale.Tr "repo.wiki.new_page"}}
|
2015-12-07 23:30:52 +01:00
|
|
|
{{if .PageIsWikiEdit}}
|
2023-09-25 10:56:50 +02:00
|
|
|
<a class="ui tiny primary button" href="{{.RepoLink}}/wiki?action=_new">{{ctx.Locale.Tr "repo.wiki.new_page_button"}}</a>
|
2015-12-07 23:30:52 +01:00
|
|
|
{{end}}
|
|
|
|
</div>
|
2022-09-04 21:54:23 +02:00
|
|
|
<form class="ui form" action="{{.Link}}?action={{if .PageIsWikiEdit}}_edit{{else}}_new{{end}}" method="post">
|
2015-12-07 23:30:52 +01:00
|
|
|
{{.CsrfTokenHtml}}
|
|
|
|
<div class="field {{if .Err_Title}}error{{end}}">
|
2023-09-25 14:42:40 +02:00
|
|
|
<input name="title" value="{{.title}}" aria-label="{{ctx.Locale.Tr "repo.wiki.page_title"}}" placeholder="{{ctx.Locale.Tr "repo.wiki.page_title"}}" autofocus required>
|
2015-12-07 23:30:52 +01:00
|
|
|
</div>
|
2021-12-03 08:28:54 +01:00
|
|
|
<div class="help">
|
2023-09-25 10:56:50 +02:00
|
|
|
{{ctx.Locale.Tr "repo.wiki.page_name_desc"}}
|
2021-12-03 08:28:54 +01:00
|
|
|
</div>
|
2023-04-03 12:06:57 +02:00
|
|
|
|
|
|
|
{{$content := .content}}
|
|
|
|
{{if not .PageIsWikiEdit}}
|
2023-09-25 10:56:50 +02:00
|
|
|
{{$content = ctx.Locale.Tr "repo.wiki.welcome"}}
|
2023-04-03 12:06:57 +02:00
|
|
|
{{end}}
|
|
|
|
{{template "shared/combomarkdowneditor" (dict
|
|
|
|
"MarkdownPreviewUrl" (print .Repository.Link "/markup")
|
|
|
|
"MarkdownPreviewContext" .RepoLink
|
|
|
|
"TextareaName" "content"
|
2023-09-25 10:56:50 +02:00
|
|
|
"TextareaPlaceholder" (ctx.Locale.Tr "repo.wiki.page_content")
|
|
|
|
"TextareaAriaLabel" (ctx.Locale.Tr "repo.wiki.page_content")
|
2023-04-09 09:51:32 +02:00
|
|
|
"TextareaContent" $content
|
2023-04-03 12:06:57 +02:00
|
|
|
)}}
|
|
|
|
|
2023-04-10 17:56:57 +02:00
|
|
|
<div class="field gt-mt-4">
|
2023-09-25 14:42:40 +02:00
|
|
|
<input name="message" aria-label="{{ctx.Locale.Tr "repo.wiki.default_commit_message"}}" placeholder="{{ctx.Locale.Tr "repo.wiki.default_commit_message"}}">
|
2015-12-07 23:30:52 +01:00
|
|
|
</div>
|
2023-07-25 19:53:16 +02:00
|
|
|
<div class="divider"></div>
|
2015-12-07 23:30:52 +01:00
|
|
|
<div class="text right">
|
2023-09-19 00:05:31 +02:00
|
|
|
<button class="ui primary button">
|
2023-09-25 10:56:50 +02:00
|
|
|
{{ctx.Locale.Tr "repo.wiki.save_page"}}
|
2015-12-07 23:30:52 +01:00
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
</form>
|
2015-11-26 02:10:25 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
2015-12-07 23:30:52 +01:00
|
|
|
{{template "base/footer" .}}
|