{% extends 'pybb/base.html' %} {% load pybb_extras %} {% load i18n %} {% load humanize %} {% load wiki_extras %} {% load wlprofile_extras %} {% load custom_date %} {% block title %} {{ topic.name }} - {{ topic.forum.name }} - {{ block.super }} {% endblock title %} {% block extra_head %} {{ block.super }} {% endblock %} {% block content %}

Topic: {{ topic }}

Forums » {% pybb_link topic.forum.category %} » {{ topic.forum.name }} » {{ topic }}

{% if moderator %} {% if topic.sticky %} {% trans "Unstick Topic" %} {% else %} {% trans "Stick Topic" %} {% endif %} {% if topic.closed %} {% trans "Open Topic" %} {% else %} {% trans "Close Topic" %} {% endif %} {% endif %} {% if user.is_authenticated %} {% if subscribed %} {% trans "Unsubscribe" %} {% else %} {% trans "Subscribe" %} {% endif %} {% trans "New Reply" %} {% endif %}
{% pybb_pagination _('Posts') %}

{% if first_post %} {% ifnotequal first_post posts.0 %} {% with first_post as post %} {% trans "First Post" %}:
{{ post.user|user_link }}
{% if post.user.wlprofile_extras.avatar %} Avatar {% endif %}
Joined: {{ post.user.date_joined|custom_date:user|title }}
Posts: {{ post.user.wlprofile.post_count }}
Ranking
{{ post.user.wlprofile.user_status.text }}
{% if post.user.wlprofile.location %} Location: {{ post.user.wlprofile.location }}
{% endif %} {% if post.user.wlprofile.get_ggzstats and post.user.wlprofile.get_ggzstats.ranking %} GGZ ranking: {{ post.user.wlprofile.get_ggzstats.ranking|floatformat }}
GGZ rating: {{ post.user.wlprofile.get_ggzstats.rating|floatformat }}
GGZ win: {{ post.user.wlprofile.get_ggzstats.wins|floatformat }}
GGZ loses: {{ post.user.wlprofile.get_ggzstats.losses|floatformat }}
{% endif %}
Posted at: {{ post.created|custom_date:user}}
{{ post.body_html|safe }}
{% if post.attachment_cache %} {% for attach in post.attachment_cache %} {% trans "Attachment" %}: {{ attach.name }} ({{ attach.size_display }}) {% endfor %} {% endif %} {% if post.updated %} {% trans "Edited" %}: {{ post.updated|custom_date:user|title}} {% endif %}
{% if user.is_authenticated %} {% ifequal user.wlprofile.show_signatures 1 %} {% if post.user.wlprofile.signature %} {{ post.user.wlprofile.signature|urlize|linebreaks }} {% endif %} {% endifequal %} {% else %} {% if post.user.wlprofile.signature %} {{ post.user.wlprofile.signature|urlize|linebreaks }} {% endif %} {% endif %} {% if moderator or post|pybb_posted_by:user %} {% if moderator or post|pybb_equal_to:last_post %} {% endif %} {% endif %}



{% endwith %} {% endifnotequal %} {% endif %} {% for post in posts %} {% endfor %}
{{ post.user|user_link }}
{% if post.user.wlprofile.avatar %} Avatar {% endif %}
Joined: {{ post.user.date_joined|custom_date:user|title }}
Posts: {{ post.user.wlprofile.post_count }}
Ranking
{{ post.user.wlprofile.user_status.text }}
{% if post.user.wlprofile.location %} Location: {{ post.user.wlprofile.location }}
{% endif %} {% if post.user.wlprofile.get_ggzstats and post.user.wlprofile.get_ggzstats.ranking %} GGZ ranking: {{ post.user.wlprofile.get_ggzstats.ranking|floatformat }}
GGZ rating: {{ post.user.wlprofile.get_ggzstats.rating|floatformat }}
GGZ win: {{ post.user.wlprofile.get_ggzstats.wins|floatformat }}
GGZ loses: {{ post.user.wlprofile.get_ggzstats.losses|floatformat }}
{% endif %}
Posted at: {{ post.created|custom_date:user}}
{{ post.body_html|safe }}
{% if post.attachment_cache %} {% for attach in post.attachment_cache %} {% trans "Attachment" %}: {{ attach.name }} ({{ attach.size_display }}) {% endfor %} {% endif %} {% if post.updated %} {% trans "Edited" %}: {{ post.updated|custom_date:user|title}} {% endif %}
{% if user.is_authenticated %} {% ifequal user.wlprofile.show_signatures 1 %} {% if post.user.wlprofile.signature %} {{ post.user.wlprofile.signature|urlize|linebreaks }} {% endif %} {% endifequal %} {% else %} {% if post.user.wlprofile.signature %} {{ post.user.wlprofile.signature|urlize|linebreaks }} {% endif %} {% endif %} {% trans "Top" %} {% trans "Quote" %} {% if moderator or post|pybb_posted_by:user %} {% trans "Edit" %} {% if moderator or post|pybb_equal_to:last_post %} {% trans "Delete" %} {% endif %} {% endif %}
{% if moderator %} {% if topic.sticky %} {% trans "Unstick Topic" %} {% else %} {% trans "Stick Topic" %} {% endif %} {% if topic.closed %} {% trans "Open Topic" %} {% else %} {% trans "Close Topic" %} {% endif %} {% endif %} {% if user.is_authenticated %} {% if subscribed %} {% trans "Unsubscribe" %} {% else %} {% trans "Subscribe" %} {% endif %} {% trans "New Reply" %} {% endif %}
{% pybb_pagination _('Posts') %}
{% if user.is_authenticated %} {% if not topic.closed %} {% include "pybb/inlines/add_post_form.html" %} {% endif %} {% endif %} {% endblock %}