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}} +