2023-03-24 13:35:38 +03:00
<div class="ui dropdown tiny basic button icon-button" data-tooltip-content=" {{ .locale .Tr "repo.diff.options_button" }} ">
2022-08-26 19:49:40 +03:00
{{ svg "octicon-kebab-horizontal" }}
2019-10-15 13:44:36 +03:00
<div class="menu">
2023-03-26 15:06:11 +03:00
<a class="item" id="show-file-list-btn"> {{ .locale .Tr "repo.diff.show_diff_stats" }} </a>
2019-11-03 01:47:25 +03:00
{{ if .Issue .Index }}
2022-06-27 23:58:46 +03: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 19:38:40 +03:00
{{ else if $ .PageIsWiki }}
2022-06-27 23:58:46 +03: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-03 01:47:25 +03:00
{{ else if .Commit .ID .String }}
2022-06-27 23:58:46 +03: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-03 01:47:25 +03:00
{{ end }}
2023-04-09 16:11:02 +03: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>
2019-10-15 13:44:36 +03:00
</div>
</div>