forked from tangled.org/core
this repo has no description
at file-tree 955 B view raw
1{{ define "title" }} 2 interdiff of round #{{ .Round }} and #{{ sub .Round 1 }}; pull #{{ .Pull.PullId }} &middot; {{ .RepoInfo.FullName }} 3{{ end }} 4 5{{ define "content" }} 6 <section class="rounded drop-shadow-sm bg-white dark:bg-gray-800 py-4 px-6 dark:text-white"> 7 <header class="pb-2"> 8 <div class="flex gap-3 items-center mb-3"> 9 <a href="/{{ .RepoInfo.FullName }}/pulls/{{ .Pull.PullId }}/" class="flex items-center gap-2 font-medium"> 10 {{ i "arrow-left" "w-5 h-5" }} 11 back 12 </a> 13 <span class="select-none before:content-['\00B7']"></span> 14 interdiff of round #{{ .Round }} and #{{ sub .Round 1 }} 15 </div> 16 <div class="border-t border-gray-200 dark:border-gray-700 my-2"></div> 17 {{ template "repo/pulls/fragments/pullHeader" . }} 18 </header> 19 </section> 20 21 <section> 22 {{ template "repo/fragments/interdiff" (list .RepoInfo.FullName .Interdiff) }} 23 </section> 24{{ end }} 25