forked from tangled.org/core
this repo has no description
1{{ define "fragments/pullCompareForksBranches" }} 2 <div class="flex flex-wrap gap-2 items-center"> 3 <select 4 name="sourceBranch" 5 class="p-1 border border-gray-200 bg-white dark:bg-gray-700 dark:text-white dark:border-gray-600" 6 > 7 <option disabled selected>source branch</option> 8 {{ range .SourceBranches }} 9 <option value="{{ .Reference.Name }}" class="py-1"> 10 {{ .Reference.Name }} 11 </option> 12 {{ end }} 13 </select> 14 </div> 15{{ end }}