{# This file is part of INGInious. See the LICENSE and the COPYRIGHTS files for #} {# more information about the licensing of this file. #} {% extends "layout.html" %} {% block title %} {{course.get_name(user_manager.session_language())}} {% endblock %} {% block column %} {{ template_helper.call('course_admin_menu',course=course,current='tasks') | safe }} {% endblock %} {% block navbar %} {% endblock %} {% block content %}

{{ _("Tasks") }}

{% if webdav_host %}
{{_("Use this URL to access your course folder using WebDAV:")}}

{{_("URL")}}{{ webdav_host ~ "/" ~ course.get_id()}}
{{_("Username")}}{{user_manager.session_username()}}
{{_("Password")}}{{user_manager.session_api_key()}}
{% endif %} {% if errors %} {% for error in errors %} {% endfor %} {% elif validated %} {% endif %}
{{ course.get_task_dispenser().render_edit(template_helper, course, tasks) | safe }}
{% endblock %}