{% extends "djangovoice/feedback_base.html" %} {% load i18n %} {% load djangovoice_tags voting_tags gravatar comments %} {% block title %}{{ title }}{% endblock %} {% block content %}
{{ score.score|default:0 }}
|
{{ feedback.type.title }} |
{{ feedback.title }} {{ feedback.status.title }}{{ comment_count }} {% blocktrans %}comment{{ comment_count|pluralize }}{% endblocktrans %} {% if feedback.user %} {% trans "Submitted by:" %} {% gravatar feedback.user.username 15 %} {% user_name feedback.user %} {% else %} {% trans "Submitted anonymously" %} {% endif %} {% trans "on" %} {{ feedback.created|date:"d M Y" }} |
{% if feedback.private %}
{% trans "PRIVATE" %} | {% endif %}
{% trans "No one has contributed any feedback yet. Be the first and submit some feedback!" %}
{% endif %} {% endblock %} {% block sidebar %} {% include "djangovoice/sidebar.html" %} {% endblock %}