{% extends 'master.twig' %} {% set forumBackLink %}{{ route('forums.forum', forum.id) }}{% endset %} {% set title %}{% if topic is defined %}{{ topic.title }}{% else %}Creating topic in {{ forum.name }}{% endif %}{% endset %} {% if topic is defined %} {% if forum.perms.reply and ( topic.status != 1 or forum.perms.changeStatus ) %} {% set forumReplyLink %}#reply{% endset %} {% endif %} {% if forum.perms.changeType or forum.perms.changeStatus or forum.perms.topicMove or forum.perms.deleteAny %} {% set showMod = true %} {% endif %} {% if forum.perms.changeType %} {% set forumSticky = topic.type == 1 ? true : false %} {% set forumAnnounce = topic.type == 2 ? true : false %} {% endif %} {% if forum.perms.changeStatus %} {% set forumLock = topic.status == 1 ? true : false %} {% endif %} {% if forum.perms.topicMove %} {% if topic.oldForum %} {% set forumRestore = true %} {% endif %} {% if topic.forum != config('forum.trash') %} {% set forumTrash = true %} {% endif %} {% endif %} {% if forum.perms.deleteAny %} {% if topic.forum == config('forum.trash') %} {% set forumPrune = true %} {% endif %} {% endif %} {% set posts = topic.posts|batch(10) %} {% set paginationPages = posts %} {% set paginationUrl %}{{ route('forums.topic', topic.id) }}{% endset %} {% endif %} {% block css %} {% endblock %} {% block js %} {% endblock %} {% block content %}
{% if post.poster.activated or post.poster.restricted %}{{ post.poster.username }}
{% else %}
[deleted user]
{% endif %}
{{ post.poster.title }}
{% if post.poster.id == (topic.posts|first).poster.id %} {% endif %}
{% if user.isActive %}
{% endif %}
|
{{ post.parsed|raw }}
{% if post.poster.signature and post.poster.perms.changeSignature %}
{{ post.poster.signature()|raw|nl2br }}
{% endif %}
|