2016-08-28 10:41:44 +02:00
<div class="commit-form-wrapper">
2016-09-01 18:36:26 +02:00
<img width="48" height="48" class="ui image commit-avatar" src=" {{ .SignedUser .RelAvatarLink }} ">
2016-08-28 10:41:44 +02:00
<div class="commit-form">
2020-01-15 09:32:57 +01:00
<h3> {{ - if .CanCommitToBranch .WillSign }}
<i title=" {{ .i18n .Tr "repo.signing.will_sign" .CanCommitToBranch .SigningKey }} " class="lock green icon"></i> {{ .i18n .Tr "repo.editor.commit_signed_changes" }}
{{ - else }}
<i title=" {{ .i18n .Tr ( printf "repo.signing.wont_sign.%s" .CanCommitToBranch .WontSignReason ) }} " class="unlock grey icon"></i> {{ .i18n .Tr "repo.editor.commit_changes" }}
{{ - end }} </h3>
2016-08-28 10:41:44 +02:00
<div class="field">
2019-04-17 18:06:35 +02:00
<input name="commit_summary" placeholder=" {{ if .PageIsDelete }} {{ .i18n .Tr "repo.editor.delete" .TreePath }} {{ else if .PageIsUpload }} {{ .i18n .Tr "repo.editor.upload_files_to_dir" .TreePath }} {{ else if .IsNewFile }} {{ .i18n .Tr "repo.editor.add_tmpl" }} {{ else }} {{ .i18n .Tr "repo.editor.update" .TreePath }} {{ end }} " value=" {{ .commit_summary }} " autofocus>
2016-08-28 10:41:44 +02:00
</div>
<div class="field">
<textarea name="commit_message" placeholder=" {{ .i18n .Tr "repo.editor.commit_message_desc" }} " rows="5"> {{ .commit_message }} </textarea>
</div>
<div class="quick-pull-choice js-quick-pull-choice">
<div class="field">
2020-01-15 09:32:57 +01:00
<div class="ui radio checkbox {{ if not .CanCommitToBranch .CanCommitToBranch }} disabled {{ end }} ">
2019-07-17 20:40:28 +02:00
<input type="radio" class="js-quick-pull-choice-option" name="commit_choice" value="direct" button_text=" {{ .i18n .Tr "repo.editor.commit_changes" }} " {{ if eq .commit_choice "direct" }} checked {{ end }} >
2016-08-28 10:41:44 +02:00
<label>
2020-09-11 22:19:00 +02:00
{{ svg "octicon-git-commit" }}
2018-04-10 05:43:37 +02:00
{{ .i18n .Tr "repo.editor.commit_directly_to_this_branch" ( .BranchName | Escape ) | Safe }}
2020-01-15 09:32:57 +01:00
{{ if not .CanCommitToBranch .CanCommitToBranch }}
<div class="ui visible small warning message">
{{ .i18n .Tr "repo.editor.no_commit_to_branch" }}
<ul>
{{ if not .CanCommitToBranch .UserCanPush }} <li> {{ .i18n .Tr "repo.editor.user_no_push_to_branch" }} </li> {{ end }}
{{ if and .CanCommitToBranch .RequireSigned ( not .CanCommitToBranch .WillSign ) }} <li> {{ .i18n .Tr "repo.editor.require_signed_commit" }} </li> {{ end }}
</ul>
</div>
{{ end }}
2016-08-28 10:41:44 +02:00
</label>
</div>
</div>
<div class="field">
2019-10-05 04:09:19 +02:00
{{ $ pullRequestEnabled : = .Repository .UnitEnabled $ .UnitTypePullRequests }}
{{ $ prUnit : = .Repository .MustGetUnit $ .UnitTypePullRequests }}
2016-08-28 10:41:44 +02:00
<div class="ui radio checkbox">
2019-10-05 04:09:19 +02:00
{{ if $ pullRequestEnabled }}
<input type="radio" class="js-quick-pull-choice-option" name="commit_choice" value="commit-to-new-branch" button_text=" {{ .i18n .Tr "repo.editor.propose_file_change" }} " {{ if eq .commit_choice "commit-to-new-branch" }} checked {{ end }} >
{{ else }}
<input type="radio" class="js-quick-pull-choice-option" name="commit_choice" value="commit-to-new-branch" button_text=" {{ .i18n .Tr "repo.editor.commit_changes" }} " {{ if eq .commit_choice "commit-to-new-branch" }} checked {{ end }} >
{{ end }}
2016-08-28 10:41:44 +02:00
<label>
2020-09-11 22:19:00 +02:00
{{ svg "octicon-git-pull-request" }}
2019-10-05 04:09:19 +02:00
{{ if $ pullRequestEnabled }}
{{ .i18n .Tr "repo.editor.create_new_branch" | Safe }}
{{ else }}
{{ .i18n .Tr "repo.editor.create_new_branch_np" | Safe }}
{{ end }}
2016-08-28 10:41:44 +02:00
</label>
</div>
</div>
<div class="quick-pull-branch-name {{ if not ( eq .commit_choice "commit-to-new-branch" ) }} hide {{ end }} ">
<div class="new-branch-name-input field {{ if .Err_NewBranchName }} error {{ end }} ">
2020-09-11 22:19:00 +02:00
{{ svg "octicon-git-branch" }}
2016-08-28 10:41:44 +02:00
<input type="text" name="new_branch_name" value=" {{ .new_branch_name }} " class="input-contrast mr-2 js-quick-pull-new-branch-name" placeholder=" {{ .i18n .Tr "repo.editor.new_branch_name_desc" }} " {{ if eq .commit_choice "commit-to-new-branch" }} required {{ end }} >
<span class="text-muted js-quick-pull-normalization-info"></span>
</div>
</div>
</div>
</div>
2019-07-17 20:40:28 +02:00
<button id="commit-button" type="submit" class="ui green button">
{{ if eq .commit_choice "commit-to-new-branch" }} {{ .i18n .Tr "repo.editor.propose_file_change" }} {{ else }} {{ .i18n .Tr "repo.editor.commit_changes" }} {{ end }}
2016-08-28 10:41:44 +02:00
</button>
<a class="ui button red" href=" {{ EscapePound $ .BranchLink }} / {{ EscapePound .TreePath }} "> {{ .i18n .Tr "repo.editor.cancel" }} </a>
2017-05-02 02:49:55 +02:00
</div>