add sensitive filter settings #17

This commit is contained in:
ghost 2023-10-09 16:53:08 +03:00
parent 6effb4cad2
commit b1679f3f65
7 changed files with 88 additions and 8 deletions

View file

@ -85,6 +85,20 @@
{% for i, locale in user.locales %}{% if i > 0 %},{% endif %} {{ locale|locale_name(locale)|u.title }}{% endfor %}
</td>
</tr>
<tr>
<td>{{ 'Theme'|trans }}</td>
<td>{{ user.theme }}</td>
</tr>
<tr>
<td>{{ 'Sensitive filter'|trans }}</td>
<td>
{% if user.sensitive %}
{{ 'yes'|trans }}
{% else %}
{{ 'no'|trans }}
{% endif %}
</td>
</tr>
</tbody>
</table>
</div>