2023-06-21 07:22:48 +08:00
<div class="ui dropdown tiny basic button" data-tooltip-content=" {{ .locale .Tr "repo.diff.options_button" }} ">
2022-08-26 18:49:40 +02:00
{{ svg "octicon-kebab-horizontal" }}
2019-10-15 12:44:36 +02:00
<div class="menu">
2023-03-26 20:06:11 +08:00
<a class="item" id="show-file-list-btn"> {{ .locale .Tr "repo.diff.show_diff_stats" }} </a>
2019-11-02 23:47:25 +01:00
{{ if .Issue .Index }}
2022-06-27 22:58:46 +02:00
<a class="item" href=" {{ $ .RepoLink }} /pulls/ {{ .Issue .Index }} .patch" download=" {{ .Issue .Index }} .patch"> {{ .locale .Tr "repo.diff.download_patch" }} </a>
<a class="item" href=" {{ $ .RepoLink }} /pulls/ {{ .Issue .Index }} .diff" download=" {{ .Issue .Index }} .diff"> {{ .locale .Tr "repo.diff.download_diff" }} </a>
2020-05-16 12:38:40 -04:00
{{ else if $ .PageIsWiki }}
2022-06-27 22:58:46 +02:00
<a class="item" href=" {{ $ .RepoLink }} /wiki/commit/ {{ PathEscape .Commit .ID .String }} .patch" download=" {{ ShortSha .Commit .ID .String }} .patch"> {{ .locale .Tr "repo.diff.download_patch" }} </a>
<a class="item" href=" {{ $ .RepoLink }} /wiki/commit/ {{ PathEscape .Commit .ID .String }} .diff" download=" {{ ShortSha .Commit .ID .String }} .diff"> {{ .locale .Tr "repo.diff.download_diff" }} </a>
2019-11-02 23:47:25 +01:00
{{ else if .Commit .ID .String }}
2022-06-27 22:58:46 +02:00
<a class="item" href=" {{ $ .RepoLink }} /commit/ {{ PathEscape .Commit .ID .String }} .patch" download=" {{ ShortSha .Commit .ID .String }} .patch"> {{ .locale .Tr "repo.diff.download_patch" }} </a>
<a class="item" href=" {{ $ .RepoLink }} /commit/ {{ PathEscape .Commit .ID .String }} .diff" download=" {{ ShortSha .Commit .ID .String }} .diff"> {{ .locale .Tr "repo.diff.download_diff" }} </a>
2019-11-02 23:47:25 +01:00
{{ end }}
2023-04-09 21:11:02 +08:00
<a id="expand-files-btn" class="item"> {{ .locale .Tr "repo.pulls.expand_files" }} </a>
<a id="collapse-files-btn"class="item"> {{ .locale .Tr "repo.pulls.collapse_files" }} </a>
2023-06-21 18:08:12 +02:00
{{ if .Issue .Index }}
{{ if .ShowOutdatedComments }}
<a class="item" href="?style= {{ if $ .IsSplitStyle }} split {{ else }} unified {{ end }} &whitespace= {{ $ .WhitespaceBehavior }} &show-outdated=false">
<label class="gt-pointer-events-none">
{{ .locale .Tr "repo.issues.review.option.hide_outdated_comments" }}
</label>
</a>
{{ else }}
<a class="item" href="?style= {{ if $ .IsSplitStyle }} split {{ else }} unified {{ end }} &whitespace= {{ $ .WhitespaceBehavior }} &show-outdated=true">
<label class="gt-pointer-events-none">
{{ .locale .Tr "repo.issues.review.option.show_outdated_comments" }}
</label>
</a>
{{ end }}
{{ end }}
2019-10-15 12:44:36 +02:00
</div>
</div>