forked from leftypol/leftypol
Allow for HTML in the board subtitle
This commit is contained in:
parent
3aa1305dab
commit
b8921508fe
4 changed files with 21 additions and 3 deletions
|
@ -8,7 +8,13 @@
|
|||
-
|
||||
{{ board.title|e }}
|
||||
{% if board.subtitle %}
|
||||
<small>— {{ board.subtitle|e }}</small>
|
||||
<small>—
|
||||
{% if config.allow_subtitle_html %}
|
||||
{{ board.subtitle }}
|
||||
{% else %}
|
||||
{{ board.subtitle|e }}
|
||||
{% endif %}
|
||||
</small>
|
||||
{% endif %}
|
||||
{% if mod|hasPermission(config.mod.manageboards) %}
|
||||
<a href="?/edit/{{ board.uri }}"><small>[{% trans 'edit' %}]</small></a>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue