{% extends "usethesource/base.html" %} {% block title %}{{ candidate.name }} - Software Freedom Conservancy{% endblock %} {% block head %} {{ block.super }} {% endblock %} {% block content %} {{ block.super }}

{{ candidate.name }}

{% if user.is_staff or user.is_superuser %}{% endif %}

Vendor: {{ candidate.vendor }}

Device: {{ candidate.device }}

Released: {{ candidate.release_date }}

{{ candidate.description|linebreaks }} {% with comments=candidate.comment_set.all %} {% if comments or user.is_staff %}

Comments

{% endif %} {% for comment in comments %} {% include "usethesource/comment_partial.html" %} {% endfor %} {% endwith %} {% if user.is_staff or user.is_superuser %} {% include "usethesource/add_comment_button_partial.html" %} {% endif %}
{% endblock content %}