{% extends "djangovoice/base.html" %} {% load i18n %} {% load url from future %} {% load djangovoice_tags comments %} {% load vote_buttons_for from qhonuskan_votes %} {% block title %}{{ title }}{% endblock %} {% block navbottom %} {% include "djangovoice/includes/navbottom.html" with active_tab='overview' %} {% endblock %} {% block content %}
{% if object.user %} {% trans "Submitted by:" %} {% get_user_image object.user 15 %} {{ object.user|display_name }} {% else %} {% trans "Submitted anonymously" %} {% endif %} {% blocktrans with object.created|date:"d M Y" as create_date %}on {{ create_date }}{% endblocktrans %} {% blocktrans count counter=comment_count %} {{ counter }} comment {% plural %} {{ counter }} comments {% endblocktrans %}
{% trans "No one has contributed any feedback yet. Be the first and submit some feedback!" %}
{% endif %} {% endblock %} {% block sidebar %} {% include "djangovoice/includes/sidebar.html" %} {% endblock %}