{% extends 'student/base.html' %} {% block body %} {% load widget_tweaks %}
Generic placeholder image

{{ educator_info.name }}

{{ educator_info.title }}

{{ educator_info.email }}

About Me

{{ educator_info.about_me }}

Your Review

{% csrf_token %} {{ review_items_form.management_form }} {% for item in review_items_form %} {{ item.rate.errors }} {{ item.review_item }} {{ item.name }}
{% for choice in item.rate %}
{{ choice }}
{% endfor %}

{% endfor %} {% for field in review_form %} {% if field.name == "content" %}
{% render_field field class="form-control" placeholder="Content" rows="6" id="textarea-input" name="textarea-input" %}
{% else %}
{% endif %} {% endfor %}
{% endblock %}