{% extends 'base.html' %} {% load i18n %} {% block title %}{{ title }} | {% trans 'Learning management system' %}{% endblock title %} {% load crispy_forms_tags %} {% load static %} {% block content %} {% include 'snippets/messages.html' %}

{% trans 'Course Allocation Form' %}

{% csrf_token %} {{ form.lecturer|as_crispy_field }} {{ form.courses|as_crispy_field }} {% for course in form.courses.all %}{{ course }}{% endfor %}
{% endblock content %}