app/soc/templates/soc/student_proposal/review.html
changeset 1715 3ec1a9518452
parent 1666 cdb7e5581694
child 1739 19f1bb7ae615
equal deleted inserted replaced
1714:bfdef9380954 1715:3ec1a9518452
    11 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    11 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    12 See the License for the specific language governing permissions and
    12 See the License for the specific language governing permissions and
    13 limitations under the License.
    13 limitations under the License.
    14 {% endcomment %}
    14 {% endcomment %}
    15 {% load forms_helpers %}
    15 {% load forms_helpers %}
       
    16 {% load comments_helpers %}
    16 
    17 
    17 {% block header_title %}
    18 {% block header_title %}
    18 {{ page_name }} "{{ entity.title }}" from {{ student_name }} (Score: {{ entity.score }})
    19 {{ page_name }} "{{ entity.title }}" from {{ student_name }} (Score: {{ entity.score }})
    19 {% endblock %}
    20 {% endblock %}
    20 
    21 
    24   {% readonly_field_as_table_row entity.fields.title.label entity.title %}
    25   {% readonly_field_as_table_row entity.fields.title.label entity.title %}
    25   {% readonly_field_as_table_row "Student" student_name %}
    26   {% readonly_field_as_table_row "Student" student_name %}
    26   {% readonly_field_as_table_row "Mentor" mentor_name %}
    27   {% readonly_field_as_table_row "Mentor" mentor_name %}
    27   {% readonly_field_as_table_row "Possible Mentors" possible_mentors %}
    28   {% readonly_field_as_table_row "Possible Mentors" possible_mentors %}
    28   {% readonly_field_as_twoline_table_row entity.fields.abstract.label entity.abstract %}
    29   {% readonly_field_as_twoline_table_row entity.fields.abstract.label entity.abstract %}
    29   {% readonly_field_as_twoline_table_row entity.fields.content.label entity.content %}
    30   {% readonly_safe_field_as_twoline_table_row entity.fields.content.label entity.content %}
    30   {% readonly_field_as_table_row "Created on" entity.created_on %}
    31   {% readonly_field_as_table_row "Created on" entity.created_on %}
    31   {% readonly_field_as_table_row "Last Modified on" entity.last_modified_on %}
    32   {% readonly_field_as_table_row "Last Modified on" entity.last_modified_on %}
    32  </table>
    33  </table>
    33 </p>
    34 </p>
    34 <hr>
    35 <hr>
    35 <b>Public Comments</b>
    36 <b>Public Reviews</b>
       
    37 {% for review in public_reviews %}
       
    38   {% as_review review %}
       
    39 {% endfor %}
    36 <hr>
    40 <hr>
    37 <b>Private Comments</b>
    41 <b>Private Reviews</b>
       
    42 {% for review in private_reviews %}
       
    43   {% as_review review %}
       
    44 {% endfor %}
    38 <hr>
    45 <hr>
    39 
    46 
    40 <form method="POST">
    47 <form method="POST">
    41   <table>
    48   <table>
    42     {% block form_table %}
    49     {% block form_table %}