mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2024-11-01 06:50:00 +00:00
fix profile field templating (yet again)
This commit is contained in:
parent
c71ccc6b29
commit
ba8c0cd4bb
1 changed files with 3 additions and 3 deletions
|
@ -62,10 +62,10 @@
|
|||
</div>
|
||||
|
||||
<div class="fields">
|
||||
{{ range $field := .account.Fields }}
|
||||
{{ range .account.Fields }}
|
||||
<div class="field">
|
||||
<b>{{emojify .account.Emojis (noescape $field.Name)}}</b>
|
||||
<span>{{emojify .account.Emojis (noescape $field.Value)}}</span>
|
||||
<b>{{emojify $.account.Emojis (noescape .Name)}}</b>
|
||||
<span>{{emojify $.account.Emojis (noescape .Value)}}</span>
|
||||
</div>
|
||||
{{ end }}
|
||||
</div>
|
||||
|
|
Loading…
Reference in a new issue