mirror of
https://github.com/go-gitea/gitea.git
synced 2024-11-03 08:07:24 -05:00
d848098f60
* Enforce tab indendation in templates This adds editorconfig-checker [1] to lint the template files so they conform the editorconfig files. I fixed all current identation issues using the fix mode of eclint [2] and some manual corrections. We can extend this linting to other files later, for now I'd like this PR to focus on HTML template files only. [1] https://github.com/editorconfig-checker/editorconfig-checker [2] https://github.com/jedmao/eclint * fix indendation Co-authored-by: zeripath <art27@cantab.net> Co-authored-by: techknowlogick <techknowlogick@gitea.io>
21 lines
961 B
Handlebars
21 lines
961 B
Handlebars
<div class="ui top tabular menu" data-write="write" data-preview="preview">
|
|
<a class="active item" data-tab="write">{{.i18n.Tr "write"}}</a>
|
|
<a class="item" data-tab="preview" data-url="{{.Repository.APIURL}}/markdown" data-context="{{.RepoLink}}">{{.i18n.Tr "preview"}}</a>
|
|
</div>
|
|
<div class="field">
|
|
<div class="ui bottom active tab" data-tab="write">
|
|
<textarea id="content" class="edit_area js-quick-submit" name="content" tabindex="4" data-id="issue-{{.RepoName}}" data-url="{{.Repository.APIURL}}/markdown" data-context="{{.Repo.RepoLink}}">
|
|
{{- if .BodyQuery}}{{.BodyQuery}}{{else if .IssueTemplate}}{{.IssueTemplate}}{{else if .PullRequestTemplate}}{{.PullRequestTemplate}}{{else}}{{.content}}{{end -}}
|
|
</textarea>
|
|
</div>
|
|
<div class="ui bottom tab markdown" data-tab="preview">
|
|
{{.i18n.Tr "loading"}}
|
|
</div>
|
|
</div>
|
|
{{if .IsAttachmentEnabled}}
|
|
<div class="field">
|
|
<div class="files"></div>
|
|
{{template "repo/upload" .}}
|
|
</div>
|
|
{{end}}
|