mirror of
1
Fork 0

profile fields formatting

This commit is contained in:
f0x 2023-05-10 20:22:05 +02:00
parent 898cf61003
commit 8d7cf52037
1 changed files with 3 additions and 3 deletions

View File

@ -62,10 +62,10 @@
</div>
<div class="fields">
{{ range .account.Fields }}
{{ range $field := .account.Fields }}
<div class="field">
<b>{{.Name}}</b>
<span>{{.Value}}</span>
<b>{{emojify .account.Emojis (noescape $field.Name)}}</b>
<span>{{emojify .account.Emojis (noescape $field.Value)}}</span>
</div>
{{ end }}
</div>