mirror of
https://github.com/go-gitea/gitea.git
synced 2026-05-23 05:42:33 +09:00
Clean up the fomantic helpers that nothing inside fomantic depends on. Manually tested all functionality. --------- Co-authored-by: Claude (Opus 4.7) <noreply@anthropic.com> Co-authored-by: wxiaoguang <wxiaoguang@gmail.com>
62 lines
2.9 KiB
Handlebars
62 lines
2.9 KiB
Handlebars
{{template "base/head" .}}
|
|
<div role="main" aria-label="{{.Title}}" class="page-content repository file editor edit">
|
|
{{template "repo/header" .}}
|
|
<div class="ui container fluid padded">
|
|
{{template "base/alert" .}}
|
|
<div class="repo-view-container">
|
|
{{template "repo/view_file_tree" .}}
|
|
<div class="repo-view-content">
|
|
<form class="ui edit form form-fetch-action" method="post" action="{{.CommitFormOptions.TargetFormAction}}"
|
|
data-text-empty-confirm-header="{{ctx.Locale.Tr "repo.editor.commit_empty_file_header"}}"
|
|
data-text-empty-confirm-content="{{ctx.Locale.Tr "repo.editor.commit_empty_file_text"}}"
|
|
>
|
|
{{template "repo/editor/common_top" .}}
|
|
<div class="repo-editor-header">
|
|
{{template "repo/view_file_tree_toggle_button" .}}
|
|
{{template "repo/editor/common_breadcrumb" .}}
|
|
</div>
|
|
{{if not .NotEditableReason}}
|
|
<div class="field">
|
|
<div class="ui top attached header">
|
|
<div class="flex-left-right">
|
|
<div class="ui compact small menu small-menu-items repo-editor-menu" data-repo-link="{{.RepoLink}}" data-ref-sub-url="{{.RefTypeNameSubURL}}" data-branch-name="{{.BranchName}}" data-global-init="initTabSwitcher">
|
|
<a class="active item" data-tab="write">{{svg "octicon-code"}} {{if .IsNewFile}}{{ctx.Locale.Tr "repo.editor.new_file"}}{{else}}{{ctx.Locale.Tr "repo.editor.edit_file"}}{{end}}</a>
|
|
<a class="item {{if not .CodeEditorConfig.Previewable}}tw-hidden{{end}}" data-tab="preview">{{svg "octicon-eye"}} {{ctx.Locale.Tr "preview"}}</a>
|
|
{{if not .IsNewFile}}
|
|
<a class="item" data-tab="diff">{{svg "octicon-diff"}} {{ctx.Locale.Tr "repo.editor.preview_changes"}}</a>
|
|
{{end}}
|
|
</div>
|
|
{{template "repo/editor/options" dict "CodeEditorConfig" $.CodeEditorConfig}}
|
|
</div>
|
|
</div>
|
|
<div class="ui bottom attached segment tw-p-0">
|
|
<div class="ui active tab tw-rounded-b" data-tab="write">
|
|
<textarea id="edit_area" name="content" class="tw-hidden" data-id="repo-{{.Repository.Name}}-{{.TreePath}}"
|
|
data-code-editor-config="{{JsonUtils.EncodeToString $.CodeEditorConfig}}"
|
|
placeholder="{{ctx.Locale.Tr "editor.code_editor.placeholder"}}">{{.FileContent}}</textarea>
|
|
<div class="editor-loading is-loading"></div>
|
|
</div>
|
|
<div class="ui tab tw-px-4 tw-py-3" data-tab="preview">
|
|
<div class="editor-loading is-loading"></div>
|
|
</div>
|
|
<div class="ui tab" data-tab="diff">
|
|
<div class="editor-loading is-loading"></div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{{else}}
|
|
<div class="field">
|
|
<div class="ui segment tw-text-center">
|
|
<h4 class="tw-font-semibold tw-mb-2">{{.NotEditableReason}}</h4>
|
|
<p>{{ctx.Locale.Tr "repo.editor.file_not_editable_hint"}}</p>
|
|
</div>
|
|
</div>
|
|
{{end}}
|
|
{{template "repo/editor/commit_form" .}}
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{{template "base/footer" .}}
|