2022-08-26 18:49:40 +02:00
<div class="ui dropdown tiny basic button icon-button tooltip" data-content=" {{ .locale .Tr "repo.diff.whitespace_button" }} ">
{{ svg "gitea-whitespace" }}
2020-10-31 23:15:11 +01:00
{{ svg "octicon-triangle-down" 1 4 "dropdown icon" }}
2018-08-14 19:49:33 +02:00
<div class="menu">
2022-02-08 17:15:04 +11:00
<a class="item" href="?style= {{ if .IsSplitStyle }} split {{ else }} unified {{ end }} &whitespace=show-all">
2023-02-13 17:59:59 +00:00
<label class="gt-pointer-events-none">
<input class="gt-mr-3 gt-pointer-events-none" type="radio" {{ if eq .WhitespaceBehavior "show-all" }} checked {{ end }} >
2022-09-25 16:01:05 +02:00
{{ .locale .Tr "repo.diff.whitespace_show_everything" }}
</label>
2018-08-14 19:49:33 +02:00
</a>
<a class="item" href="?style= {{ if .IsSplitStyle }} split {{ else }} unified {{ end }} &whitespace=ignore-all">
2023-02-13 17:59:59 +00:00
<label class="gt-pointer-events-none">
<input class="gt-mr-3 gt-pointer-events-none" type="radio" {{ if eq .WhitespaceBehavior "ignore-all" }} checked {{ end }} >
2022-09-25 16:01:05 +02:00
{{ .locale .Tr "repo.diff.whitespace_ignore_all_whitespace" }}
<label>
2018-08-14 19:49:33 +02:00
</a>
<a class="item" href="?style= {{ if .IsSplitStyle }} split {{ else }} unified {{ end }} &whitespace=ignore-change">
2023-02-13 17:59:59 +00:00
<label class="gt-pointer-events-none">
<input class="gt-mr-3 gt-pointer-events-none" type="radio" {{ if eq .WhitespaceBehavior "ignore-change" }} checked {{ end }} >
2022-09-25 16:01:05 +02:00
{{ .locale .Tr "repo.diff.whitespace_ignore_amount_changes" }}
</label>
2018-08-14 19:49:33 +02:00
</a>
<a class="item" href="?style= {{ if .IsSplitStyle }} split {{ else }} unified {{ end }} &whitespace=ignore-eol">
2023-02-13 17:59:59 +00:00
<label class="gt-pointer-events-none">
<input class="gt-mr-3 gt-pointer-events-none" type="radio" {{ if eq .WhitespaceBehavior "ignore-eol" }} checked {{ end }} >
2022-09-25 16:01:05 +02:00
{{ .locale .Tr "repo.diff.whitespace_ignore_at_eol" }}
</label>
2018-08-14 19:49:33 +02:00
</a>
</div>
</div>
2022-08-26 18:49:40 +02:00
<a class="ui tiny basic toggle button icon-button tooltip" href="?style= {{ if .IsSplitStyle }} unified {{ else }} split {{ end }} &whitespace= {{ $ .WhitespaceBehavior }} " data-content=" {{ if .IsSplitStyle }} {{ .locale .Tr "repo.diff.show_unified_view" }} {{ else }} {{ .locale .Tr "repo.diff.show_split_view" }} {{ end }} "> {{ if .IsSplitStyle }} {{ svg "gitea-join" }} {{ else }} {{ svg "gitea-split" }} {{ end }} </a>