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

{% trans 'Welcome' %}, {{ user.username }}!

Course invitation

{# cache 300 courses user.username #} {% for course in course_invites %}

{{ course.identifier }} – {{ course.name }}

{% blocktrans %}Share this link with students to invite them to your course. When they click on it, they may be required to log in through Kursa first, but after doing so, they will be enrolled and you will see them in your grade summary.{% endblocktrans %}


{{ course.invitation_link }}


{% trans "Reset invitation link" %}

{% blocktrans %}Why?{% endblocktrans %} {% blocktrans %}You may need to reset the invitation link, if you're reusing this course as a new one, or, if someone has shared the invitation link somewhere and you did not wish them to do so. This will break the old links.{% endblocktrans %}

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