need to include user options in the frags page too

Ted Unangst 4 years ago
parent 76e1f83708
commit 0d319a791a

@ -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>

@ -2205,6 +2205,7 @@ func webhydra(w http.ResponseWriter, r *http.Request) {
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 {

Loading…
Cancel
Save