2023-09-25 13:15:51 +00:00
|
|
|
<div class="ui dropdown tiny basic button" data-tooltip-content="{{ctx.Locale.Tr "repo.diff.options_button"}}">
|
2022-08-26 16:49:40 +00:00
|
|
|
{{svg "octicon-kebab-horizontal"}}
|
2019-10-15 10:44:36 +00:00
|
|
|
<div class="menu">
|
2023-09-25 13:15:51 +00:00
|
|
|
<a class="item" id="show-file-list-btn">{{ctx.Locale.Tr "repo.diff.show_diff_stats"}}</a>
|
2019-11-02 22:47:25 +00:00
|
|
|
{{if .Issue.Index}}
|
2023-09-25 13:15:51 +00:00
|
|
|
<a class="item" href="{{$.RepoLink}}/pulls/{{.Issue.Index}}.patch" download="{{.Issue.Index}}.patch">{{ctx.Locale.Tr "repo.diff.download_patch"}}</a>
|
|
|
|
<a class="item" href="{{$.RepoLink}}/pulls/{{.Issue.Index}}.diff" download="{{.Issue.Index}}.diff">{{ctx.Locale.Tr "repo.diff.download_diff"}}</a>
|
2020-05-16 16:38:40 +00:00
|
|
|
{{else if $.PageIsWiki}}
|
2023-09-25 13:15:51 +00:00
|
|
|
<a class="item" href="{{$.RepoLink}}/wiki/commit/{{PathEscape .Commit.ID.String}}.patch" download="{{ShortSha .Commit.ID.String}}.patch">{{ctx.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">{{ctx.Locale.Tr "repo.diff.download_diff"}}</a>
|
2019-11-02 22:47:25 +00:00
|
|
|
{{else if .Commit.ID.String}}
|
2023-09-25 13:15:51 +00:00
|
|
|
<a class="item" href="{{$.RepoLink}}/commit/{{PathEscape .Commit.ID.String}}.patch" download="{{ShortSha .Commit.ID.String}}.patch">{{ctx.Locale.Tr "repo.diff.download_patch"}}</a>
|
|
|
|
<a class="item" href="{{$.RepoLink}}/commit/{{PathEscape .Commit.ID.String}}.diff" download="{{ShortSha .Commit.ID.String}}.diff">{{ctx.Locale.Tr "repo.diff.download_diff"}}</a>
|
2019-11-02 22:47:25 +00:00
|
|
|
{{end}}
|
2023-09-25 13:15:51 +00:00
|
|
|
<a id="expand-files-btn" class="item">{{ctx.Locale.Tr "repo.pulls.expand_files"}}</a>
|
|
|
|
<a id="collapse-files-btn"class="item">{{ctx.Locale.Tr "repo.pulls.collapse_files"}}</a>
|
2023-06-21 16:08:12 +00: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">
|
2023-09-25 13:15:51 +00:00
|
|
|
{{ctx.Locale.Tr "repo.issues.review.option.hide_outdated_comments"}}
|
2023-06-21 16:08:12 +00:00
|
|
|
</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">
|
2023-09-25 13:15:51 +00:00
|
|
|
{{ctx.Locale.Tr "repo.issues.review.option.show_outdated_comments"}}
|
2023-06-21 16:08:12 +00:00
|
|
|
</label>
|
|
|
|
</a>
|
|
|
|
{{end}}
|
|
|
|
{{end}}
|
2019-10-15 10:44:36 +00:00
|
|
|
</div>
|
|
|
|
</div>
|