need to include user options in the frags page too
Ted Unangst tedu@tedunangst.com
Sun, 26 Apr 2020 15:12:37 -0400
2 files changed,
3 insertions(+),
1 deletions(-)
M
views/honkfrags.html
→
views/honkfrags.html
@@ -1,9 +1,10 @@
<div>{{ .TopHID }}</div> {{ $BonkCSRF := .HonkCSRF }} {{ $MapLink := .MapLink }} +{{ $Badonk := .User.Options.Reaction }} <div><p>{{ .ServerMessage }}</div> <div> {{ range .Honks }} -{{ template "honk.html" map "Honk" . "MapLink" $MapLink "BonkCSRF" $BonkCSRF }} +{{ template "honk.html" map "Honk" . "MapLink" $MapLink "BonkCSRF" $BonkCSRF "Badonk" $Badonk }} {{ end }} </div>
M
web.go
→
web.go
@@ -2205,6 +2205,7 @@ }
reverbolate(userid, honks) templinfo["Honks"] = honks templinfo["MapLink"] = getmaplink(u) + templinfo["User"], _ = butwhatabout(u.Username) w.Header().Set("Content-Type", "text/html; charset=utf-8") err := readviews.Execute(w, "honkfrags.html", templinfo) if err != nil {