2020-09-11 08:48:39 -06:00
|
|
|
{{template "base/head" .}}
|
2023-02-01 15:56:10 -07:00
|
|
|
<div role="main" aria-label="{{.Title}}" class="page-content repository new issue">
|
2020-09-11 08:48:39 -06:00
|
|
|
{{template "repo/header" .}}
|
|
|
|
<div class="ui container">
|
2022-09-02 01:58:49 -06:00
|
|
|
{{template "base/alert" .}}
|
2020-09-11 08:48:39 -06:00
|
|
|
<div class="navbar">
|
|
|
|
{{template "repo/issue/navbar" .}}
|
|
|
|
</div>
|
2023-06-29 06:24:22 -06:00
|
|
|
<div class="divider"></div>
|
2020-09-11 08:48:39 -06:00
|
|
|
{{range .IssueTemplates}}
|
|
|
|
<div class="ui attached segment">
|
|
|
|
<div class="ui two column grid">
|
|
|
|
<div class="column left aligned">
|
|
|
|
<strong>{{.Name | RenderEmojiPlain}}</strong>
|
2023-03-27 10:05:51 -06:00
|
|
|
<br>{{.About | RenderEmojiPlain}}
|
2020-09-11 08:48:39 -06:00
|
|
|
</div>
|
|
|
|
<div class="column right aligned">
|
2023-09-25 02:56:50 -06:00
|
|
|
<a href="{{$.RepoLink}}/issues/new?template={{.FileName}}{{if $.milestone}}&milestone={{$.milestone}}{{end}}{{if $.project}}&project={{$.project}}{{end}}" class="ui primary button">{{ctx.Locale.Tr "repo.issues.choose.get_started"}}</a>
|
2020-09-11 08:48:39 -06:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{end}}
|
2023-03-28 12:22:07 -06:00
|
|
|
{{range .IssueConfig.ContactLinks}}
|
|
|
|
<div class="ui attached segment">
|
|
|
|
<div class="ui two column grid">
|
|
|
|
<div class="column left aligned">
|
|
|
|
<strong>{{.Name | RenderEmojiPlain}}</strong>
|
|
|
|
<br>{{.About | RenderEmojiPlain}}
|
|
|
|
</div>
|
|
|
|
<div class="column right aligned">
|
2023-09-25 02:56:50 -06:00
|
|
|
<a href="{{.URL}}" class="ui primary button">{{svg "octicon-link-external"}} {{ctx.Locale.Tr "repo.issues.choose.open_external_link"}}</a>
|
2023-03-28 12:22:07 -06:00
|
|
|
</div>
|
2020-09-15 20:07:09 -06:00
|
|
|
</div>
|
2023-03-28 12:22:07 -06:00
|
|
|
</div>
|
|
|
|
{{end}}
|
|
|
|
{{if .IssueConfig.BlankIssuesEnabled}}
|
|
|
|
<div class="ui attached segment">
|
|
|
|
<div class="ui two column grid">
|
|
|
|
<div class="column left aligned">
|
2023-09-25 02:56:50 -06:00
|
|
|
<strong>{{ctx.Locale.Tr "repo.issues.choose.blank"}}</strong>
|
|
|
|
<br/>{{ctx.Locale.Tr "repo.issues.choose.blank_about"}}
|
2023-03-28 12:22:07 -06:00
|
|
|
</div>
|
|
|
|
<div class="column right aligned">
|
2023-09-25 02:56:50 -06:00
|
|
|
<a href="{{.RepoLink}}/issues/new?{{if .milestone}}&milestone={{.milestone}}{{end}}{{if $.project}}&project={{$.project}}{{end}}" class="ui primary button">{{ctx.Locale.Tr "repo.issues.choose.get_started"}}</a>
|
2023-03-28 12:22:07 -06:00
|
|
|
</div>
|
2020-09-15 20:07:09 -06:00
|
|
|
</div>
|
|
|
|
</div>
|
2023-03-28 12:22:07 -06:00
|
|
|
{{end}}
|
|
|
|
{{- if .IssueConfigError}}{{/* normal warning flash makes problems here*/}}
|
|
|
|
<div class="ui warning message">
|
|
|
|
<div class="text left">
|
2023-09-25 02:56:50 -06:00
|
|
|
<div>{{ctx.Locale.Tr "repo.issues.choose.invalid_config"}}</div>
|
2023-06-14 12:17:58 -06:00
|
|
|
<div>{{.IssueConfigError}}</div>
|
2023-03-28 12:22:07 -06:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{end}}
|
2020-09-11 08:48:39 -06:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{template "base/footer" .}}
|