You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

whitespace_dropdown.tmpl 2.1KB

123456789101112131415161718192021222324252627282930
  1. <div class="ui dropdown tiny basic button" data-tooltip-content="{{ctx.Locale.Tr "repo.diff.whitespace_button"}}">
  2. {{svg "gitea-whitespace"}}
  3. <div class="menu">
  4. <a class="item" href="?style={{if .IsSplitStyle}}split{{else}}unified{{end}}&whitespace=show-all&show-outdated={{$.ShowOutdatedComments}}">
  5. <label class="tw-pointer-events-none">
  6. <input class="tw-mr-2 tw-pointer-events-none" type="radio"{{if eq .WhitespaceBehavior "show-all"}} checked{{end}}>
  7. {{ctx.Locale.Tr "repo.diff.whitespace_show_everything"}}
  8. </label>
  9. </a>
  10. <a class="item" href="?style={{if .IsSplitStyle}}split{{else}}unified{{end}}&whitespace=ignore-all&show-outdated={{$.ShowOutdatedComments}}">
  11. <label class="tw-pointer-events-none">
  12. <input class="tw-mr-2 tw-pointer-events-none" type="radio"{{if eq .WhitespaceBehavior "ignore-all"}} checked{{end}}>
  13. {{ctx.Locale.Tr "repo.diff.whitespace_ignore_all_whitespace"}}
  14. </label>
  15. </a>
  16. <a class="item" href="?style={{if .IsSplitStyle}}split{{else}}unified{{end}}&whitespace=ignore-change&show-outdated={{$.ShowOutdatedComments}}">
  17. <label class="tw-pointer-events-none">
  18. <input class="tw-mr-2 tw-pointer-events-none" type="radio"{{if eq .WhitespaceBehavior "ignore-change"}} checked{{end}}>
  19. {{ctx.Locale.Tr "repo.diff.whitespace_ignore_amount_changes"}}
  20. </label>
  21. </a>
  22. <a class="item" href="?style={{if .IsSplitStyle}}split{{else}}unified{{end}}&whitespace=ignore-eol&show-outdated={{$.ShowOutdatedComments}}">
  23. <label class="tw-pointer-events-none">
  24. <input class="tw-mr-2 tw-pointer-events-none" type="radio"{{if eq .WhitespaceBehavior "ignore-eol"}} checked{{end}}>
  25. {{ctx.Locale.Tr "repo.diff.whitespace_ignore_at_eol"}}
  26. </label>
  27. </a>
  28. </div>
  29. </div>
  30. <a class="ui tiny basic button" href="?style={{if .IsSplitStyle}}unified{{else}}split{{end}}&whitespace={{$.WhitespaceBehavior}}&show-outdated={{$.ShowOutdatedComments}}" data-tooltip-content="{{if .IsSplitStyle}}{{ctx.Locale.Tr "repo.diff.show_unified_view"}}{{else}}{{ctx.Locale.Tr "repo.diff.show_split_view"}}{{end}}">{{if .IsSplitStyle}}{{svg "gitea-join"}}{{else}}{{svg "gitea-split"}}{{end}}</a>