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