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