{% extends 'univ_oahpa.html' %} {% load i18n %} {% load goal_filters %} {% load staticfiles %} {% get_current_language as LANGUAGE_CODE %} {% comment %} TODO: link in user interface {% endcomment %} {% block main_js %}{% endblock %} {% block extrajs %} {% endblock %} {% block page_class %}fixed{% endblock %} {% block imgprefix %}numra{% endblock %} {% block content %} {# Add blocktrans and trans tags #}

 

{% include 'user_notifications_block.html' %}
{% if is_student %}
{% for course in courses %} {% include 'courses_course_block.html' %} {% endfor %}
{% else %}

{% trans "You are a course instructor." %} {% trans "To view your own grade summary," %} {% trans "click here" %}

{% trans "View students' grades" %}

{% endif %}
{% endblock %} {# vim: set ts=4 sw=4 tw=0 syntax=htmldjango : #}