From c9068e7bacc69878e1afff05c91d4c5277bd12f0 Mon Sep 17 00:00:00 2001 From: oppiliappan Date: Tue, 16 Dec 2025 03:52:38 +0000 Subject: [PATCH] appview/pages: remove unused template file --- .../issues/fragments/globalIssueListing.html | 63 ------------------- 1 file changed, 63 deletions(-) delete mode 100644 appview/pages/templates/repo/issues/fragments/globalIssueListing.html diff --git a/appview/pages/templates/repo/issues/fragments/globalIssueListing.html b/appview/pages/templates/repo/issues/fragments/globalIssueListing.html deleted file mode 100644 index 7ecd808a..00000000 --- a/appview/pages/templates/repo/issues/fragments/globalIssueListing.html +++ /dev/null @@ -1,63 +0,0 @@ -{{ define "repo/issues/fragments/globalIssueListing" }} -
- {{ range .Issues }} -
- -
- {{ $bgColor := "bg-gray-800 dark:bg-gray-700" }} - {{ $icon := "ban" }} - {{ $state := "closed" }} - {{ if .Open }} - {{ $bgColor = "bg-green-600 dark:bg-green-700" }} - {{ $icon = "circle-dot" }} - {{ $state = "open" }} - {{ end }} - - - {{ i $icon "w-3 h-3 mr-1.5 text-white dark:text-white" }} - {{ $state }} - - - - {{ template "user/fragments/picHandleLink" .Did }} - - - - {{ template "repo/fragments/time" .Created }} - - - - {{ $s := "s" }} - {{ if eq (len .Comments) 1 }} - {{ $s = "" }} - {{ end }} - {{ len .Comments }} comment{{$s}} - - - {{ $state := .Labels }} - {{ range $k, $d := $.LabelDefs }} - {{ range $v, $s := $state.GetValSet $d.AtUri.String }} - {{ template "labels/fragments/label" (dict "def" $d "val" $v "withPrefix" true) }} - {{ end }} - {{ end }} -
-
- {{ end }} -
-{{ end }} -- 2.51.2