{% extends "sphene/sphboard/base.html" %}
{% load i18n %}
{% load sph_extras %}
{% load sphboard_extras %}
{% load sph_pagination %}
{% block head %}
{{ block.super }}
{% endblock %}
{% block stylesheets %}
{{ block.super }}
{% endblock %}
{% block content %}
{% block sphboard_breadcrumb %}
{% sphboard_displayBreadcrumbsForThread thread %}
{% endblock %}
{% if thread.allow_sticking or thread.allow_locking or thread.allow_moving %}
{% trans "Thread Options:" %}
{% if thread.allow_sticking %}
{% if thread.is_sticky %}
[ {% trans "Remove Sticky" %} ]
{% else %}
[ {% trans "Make Sticky" %} ]
{% endif %}
{% endif %}
{% if thread.allow_locking %}
[
{% if thread.is_closed %}{% trans "Unlock Thread" %}{% else %}{% trans "Lock Thread" %}{% endif %}
]
{% endif %}
{% if thread.allow_moving %}
[ {% trans "Move Thread" %} ]
{% endif %}
{% comment %}
{% sph_pagination pages page %}
{% endblock %}{% sphboard_post_authorinfo post.author_id %} |
{% if post.allow_annotating %}
[ {% trans "Annotate/Hide" %} ]
{% endif %}
{% if post.allowEditing %}
[ {% trans "Edit" %} ]
{% endif %}
{% if post.allowHiding %}
[ {% trans "Delete" %} ]
{% endif %}
{% if post.allowMovingPost %}
[ {% trans "Move" %} ]
{% endif %}
{% if allowPosting %}
[ {% trans "Quote" %} ]
{% endif %}
|
||
{% block post_body %}
{% if post.is_annotated %}
{% if post.annotation.get.hide_post %}
{% trans "Post hidden by" %} {% sphboard_displayUserName post.annotation.get.author %}:
{% else %}
{{ post.annotation.get.body_escaped }} {% trans "Post annotated by" %} {% sphboard_displayUserName post.annotation.get.author %}: {{ post.annotation.get.body_escaped }}
{{ post.body_escaped }}
{% endif %}
{% else %}
{{ post.body_escaped }}
{% endif %}
{% with post.attachments.all as allattachments %}
{% if allattachments|length %}
{% endif %}
{% endwith %}
{% endblock post_body %}
|
|||
{% trans "Poll:" %} {{ post.poll.question }}{% if post.poll.allow_editing %}[ {% trans "Edit this poll" %} ] {% endif %} {% if post.poll.has_voted %}{% trans "You already voted. Here are the results" %} ({{ post.poll.total_voters }} {% trans "votes total" %} - {% widthratio post.poll.null_votes post.poll.total_votes 100 %}% {% trans "did not answer" %}):
|