{% extends "peerreview/frontend/base.html" %} {% load review_tags %} {% block extrahead %} {% review_item_head_script %} {% endblock %} {% block document_ready %} {{block.super}} $('.btn').button(); $('.btn').popover(); {% if review.hide_review_box %} $('.option_group').hide(); {% endif %} {% endblock %} {% block extrastyle %} .box_of_peers { padding-top: 20px; font-size: small; } .pagination { padding: 5px; } .pagination .current { padding: 5px; } .btn-down { font-weight: bold; color: blue; } .option_group { padding: 5px; visible: false; } .pagination { padding-bottom: 25px; } .comments_box { clear: both; padding-top: 10px; width: 400px; } .float-right { float:right; } .float-left { float:left; } .clear_both { clear: both; } .well { min-height: 30px; } {% endblock %} {% block title %}

{{review.title}}

{% endblock %} {% block description %} {% if review.description %} {% endif %} {% endblock %} {% block content %} {% block item_list %} {% for item in items %} {% block item_block %} {{ item.content }} {% endblock %} {% block option_group %}
{% for option in review.option_group.options.all %} {% endfor %} {% block review_option_group_buttons %} {% endblock %}
{% block custom_review_option_group_buttons %} {% endblock %}
{% if review.option_group.comments_enabled %}
Comments:
{% endif %} {% if review.show_reviews_from_peers %}

{% for entry in item.entries.all %}

 {{entry}}
{% endfor %} {% endif %}
{% if review.hide_review_box %}
{% if item.selected_option_id %} You've allready review this - click to see. {% else %} Click here to review this. {% endif %}
{% endif %} {% endblock %} {% endfor %} {% endblock %} {% endblock %}