remotes/1693045480750635534/spooky-22
Aevann1 2021-08-31 23:56:14 +02:00
parent 301bac93f4
commit e29a02bf11
2 changed files with 3 additions and 3 deletions

View File

@ -42,7 +42,7 @@ _allowed_tags = tags = ['b',
'span',
]
noimages = ['b',
noimages = tags = ['b',
'blockquote',
'br',
'code',

View File

@ -12,7 +12,7 @@
</thead>
{% for user in successful %}
<tr>
<td style="font-weight: bold">{{users.index(user)+1}}</td>
<td style="font-weight: bold">{{successful.index(user)+1}}</td>
<td><a style="color:#{{user.namecolor}}; font-weight:bold;" href="/@{{user.username}}"><img src="/uid/{{user.id}}/pic/profile" class="profile-pic-20 mr-1"><span {% if user.patron %}class="patron" style="background-color:#{{user.namecolor}};"{% endif %}>{{user.username}}</span></a></td>
</tr>
{% endfor %}
@ -31,7 +31,7 @@
</thead>
{% for user in failed %}
<tr>
<td style="font-weight: bold">{{users.index(user)+1}}</td>
<td style="font-weight: bold">{{failed.index(user)+1}}</td>
<td><a style="color:#{{user.namecolor}}; font-weight:bold;" href="/@{{user.username}}"><img src="/uid/{{user.id}}/pic/profile" class="profile-pic-20 mr-1"><span {% if user.patron %}class="patron" style="background-color:#{{user.namecolor}};"{% endif %}>{{user.username}}</span></a></td>
</tr>
{% endfor %}