aboutsummaryrefslogtreecommitdiffstats
path: root/templates/repo/editor/diff_preview.tmpl
blob: fd543a5ab968fb4487f6e17a0134aa56b2618117 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{{if .File}}
<div class="diff-file-box">
	<div class="ui attached table segment">
		<div class="file-body file-code code-diff code-diff-unified unicode-escaped">
			<table>
				<tbody>
					{{template "repo/diff/section_unified" dict "file" .File "root" $}}
				</tbody>
			</table>
		</div>
	</div>
</div>
{{else}}
<div class="tw-p-6 tw-text-center">
	{{ctx.Locale.Tr "repo.editor.no_changes_to_show"}}
</div>
{{end}}