{% extends "base.html" %} {% load i18n %} {% block content %}

{% trans 'page_title_upload_course' %}

{% include "includes/messages.html" %}
{% csrf_token %}
{{ form.non_field_errors }}
{{ form.course_file.errors }}
{{ form.course_file }}
{{ form.course_file.help_text }}
{{ form.tags.errors }}
{% trans 'form_field_tags' %}
{{ form.tags }}
{{ form.tags.help_text }}
 
{% endblock %}