{% extends 'educator/base.html' %} {% block title %}Student{% endblock %} {% block body %} {% load static %} {% load widget_tweaks%} Student Performance Year {% for year in years %} {{ year.name }} {% endfor %} {% for term in terms %} {{ term.name }} {% endfor %} Add Review {%csrf_token%} Review : {% for field in advice_form.visible_fields %} {{ field|add_class:'form-control' |attr:"rows:5" }} {% for error in field.errors %} {{ error }} {% endfor %} {% endfor %} Submit Educators Advices {% include 'educator/pagination/student_profile.html' %} {% endblock %}