Conditions for reactions

This commit is contained in:
localhost_frssoft 2022-10-31 12:45:18 +03:00
parent 134a8ca16c
commit 9a6e1324d5
1 changed files with 3 additions and 3 deletions

View File

@ -101,14 +101,14 @@
{{if .Pleroma.Reactions}}
<div class="pleroma-reactions">
{{range .Pleroma.Reactions}}
{{$react := "react"}} {{if .Me}} {{$react := "unreact"}} {{end}}
{{$react := "react"}} {{if .Me}} {{$react = "unreact"}} {{end}}
<form action="/{{$react}}-with/{{$st_id}}?emoji={{.Name}}" method="post" target="_self">
<input type="hidden" name="csrf_token" value="{{$.Ctx.CSRFToken}}">
<input type="hidden" name="referrer" value="{{$.Ctx.Referrer}}">
{{if .Url}}
<input type="image" src="{{.Url}}" title="{{.Name}}{{.Count}}*" height=32 width=32 class="pleroma-emoji">
<input type="image" src="{{.Url}}" title="{{.Name}}{{.Count}}*" {{if eq $react "unreact"}}height=36 width=36 {{else}} height=32 width=32 {{end}} class="pleroma-emoji">
{{else}}
<input type="submit" value="{{.Name}}{{.Count}}*" class="pleroma-emoji">
<input type="submit" value="{{.Name}}{{.Count}}{{if eq $react "unreact"}}*{{end}}" class="pleroma-emoji">
{{end}}
</form>
{{end}}