From 70d032e181adc4f1190d2578d406cfbf2012b08f Mon Sep 17 00:00:00 2001
From: Las Zenow
Date: Fri, 7 May 2021 07:26:58 +0000
Subject: [PATCH] Add the missing & to the list edit
---
templates/list_edit.html | 7 ++++++-
1 file changed, 6 insertions(+), 1 deletion(-)
diff --git a/templates/list_edit.html b/templates/list_edit.html
index b5c780a..78b19d7 100644
--- a/templates/list_edit.html
+++ b/templates/list_edit.html
@@ -36,7 +36,12 @@
{{if .Publisher}}{{.Publisher}}{{end}}
-
{{strings_join .Authors "& "}}
+
+ {{range $i, $author := .Authors}}
+ {{if $i}}&{{end}}
+ {{$author}}
+ {{end}}
+