This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

core / appview / pages / templates / repo / fragments / interdiffFiles.html
486 B 11 lines
1{{ define "repo/fragments/interdiffFiles" }} 2{{ $fileTree := fileTree .AffectedFiles }} 3<section class="mt-4 px-6 py-2 border border-gray-200 dark:border-gray-700 w-full mx-auto rounded bg-white dark:bg-gray-800 drop-shadow-sm min-h-full text-sm"> 4 <div class="diff-stat"> 5 <div class="flex gap-2 items-center"> 6 <strong class="text-sm uppercase dark:text-gray-200">files</strong> 7 </div> 8 {{ template "repo/fragments/fileTree" $fileTree }} 9 </div> 10</section> 11{{ end }}