{% extends "cranefly/layout.html" %} {% load i18n %} {% load url from future %} {% import "cranefly/macros.html" as macros with context %} {% block title %}{{ macros.page_title(title=(_("Post #%(post)s Votes") % {'post': post.pk}),parent=thread.name) }}{% endblock %} {% block breadcrumb %}{{ super() }} {% for parent in parents %}
{% if vote %} {{ vote_details(vote, 'thumbs-up') }} {% else %} {% endif %} | {% endfor %}
{% trans %}Nobody liked this post.{% endtrans %}
{% endif %}{% if vote %} {{ vote_details(vote, 'thumbs-down') }} {% else %} {% endif %} | {% endfor %}
{% trans %}Nobody hated this post.{% endtrans %}
{% endif %}{{ vote.date|reldate }}{% if acl.users.can_see_users_trails() %}, {{ vote.ip }}{% endif %}
{% endmacro %}