2022-02-09 13:28:55 -07:00
|
|
|
{{template "base/head" .}}
|
2023-02-01 15:56:10 -07:00
|
|
|
<div role="main" aria-label="{{.Title}}" class="page-content repository file editor edit">
|
2022-02-09 13:28:55 -07:00
|
|
|
{{template "repo/header" .}}
|
|
|
|
<div class="ui container">
|
|
|
|
{{template "base/alert" .}}
|
2023-06-14 12:17:58 -06:00
|
|
|
<form class="ui edit form" method="post" action="{{.RepoLink}}/_diffpatch/{{.BranchName | PathEscapeSegments}}">
|
2022-02-09 13:28:55 -07:00
|
|
|
{{.CsrfTokenHtml}}
|
|
|
|
<input type="hidden" name="last_commit" value="{{.last_commit}}">
|
|
|
|
<input type="hidden" name="page_has_posted" value="{{.PageHasPosted}}">
|
2023-05-01 09:40:02 -06:00
|
|
|
<div class="repo-editor-header">
|
|
|
|
<div class="ui breadcrumb field {{if .Err_TreePath}}error{{end}}">
|
2023-09-25 02:56:50 -06:00
|
|
|
{{ctx.Locale.Tr "repo.editor.patching"}}
|
2023-05-01 09:40:02 -06:00
|
|
|
<a class="section" href="{{$.RepoLink}}">{{.Repository.FullName}}</a>
|
2023-08-15 18:08:23 -06:00
|
|
|
<div class="breadcrumb-divider">:</div>
|
2023-05-01 09:40:02 -06:00
|
|
|
<a class="section" href="{{$.BranchLink}}">{{.BranchName}}</a>
|
2023-09-25 06:42:40 -06:00
|
|
|
<span>{{ctx.Locale.Tr "repo.editor.or"}} <a href="{{$.BranchLink}}">{{ctx.Locale.Tr "repo.editor.cancel_lower"}}</a></span>
|
2024-02-26 02:05:22 -07:00
|
|
|
<input type="hidden" name="tree_path" value="__dummy_for_EditRepoFileForm.TreePath(Required)__">
|
|
|
|
<input id="file-name" type="hidden" value="diff.patch">
|
2022-02-09 13:28:55 -07:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="field">
|
|
|
|
<div class="ui top attached tabular menu" data-write="write">
|
2023-09-25 02:56:50 -06:00
|
|
|
<a class="active item" data-tab="write">{{svg "octicon-code" 16 "gt-mr-2"}}{{ctx.Locale.Tr "repo.editor.new_patch"}}</a>
|
2022-02-09 13:28:55 -07:00
|
|
|
</div>
|
|
|
|
<div class="ui bottom attached active tab segment" data-tab="write">
|
2023-02-18 21:06:14 -07:00
|
|
|
<textarea id="edit_area" name="content" class="gt-hidden" data-id="repo-{{.Repository.Name}}-patch"
|
2022-02-09 13:28:55 -07:00
|
|
|
data-context="{{.RepoLink}}"
|
|
|
|
data-line-wrap-extensions="{{.LineWrapExtensions}}">
|
|
|
|
{{.FileContent}}</textarea>
|
|
|
|
<div class="editor-loading is-loading"></div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{template "repo/editor/commit_form" .}}
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
|
2023-04-24 05:08:59 -06:00
|
|
|
<div class="ui g-modal-confirm modal" id="edit-empty-content-modal">
|
2023-04-23 03:24:19 -06:00
|
|
|
<div class="header">
|
2023-03-20 19:42:02 -06:00
|
|
|
{{svg "octicon-file"}}
|
2023-09-25 02:56:50 -06:00
|
|
|
{{ctx.Locale.Tr "repo.editor.commit_empty_file_header"}}
|
2022-02-09 13:28:55 -07:00
|
|
|
</div>
|
|
|
|
<div class="center content">
|
2023-09-25 02:56:50 -06:00
|
|
|
<p>{{ctx.Locale.Tr "repo.editor.commit_empty_file_text"}}</p>
|
2022-02-09 13:28:55 -07:00
|
|
|
</div>
|
|
|
|
<div class="actions">
|
2023-09-18 16:05:31 -06:00
|
|
|
<button class="ui cancel button">
|
2023-03-13 21:34:09 -06:00
|
|
|
{{svg "octicon-x"}}
|
2023-09-25 02:56:50 -06:00
|
|
|
{{ctx.Locale.Tr "repo.editor.cancel"}}
|
2023-03-13 21:34:09 -06:00
|
|
|
</button>
|
2023-09-18 16:05:31 -06:00
|
|
|
<button class="ui primary ok button">
|
2023-03-13 21:34:09 -06:00
|
|
|
{{svg "fontawesome-save"}}
|
2023-09-25 02:56:50 -06:00
|
|
|
{{ctx.Locale.Tr "repo.editor.commit_changes"}}
|
2023-03-13 21:34:09 -06:00
|
|
|
</button>
|
2022-02-09 13:28:55 -07:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{template "base/footer" .}}
|