39 lines
1.3 KiB
HTML
39 lines
1.3 KiB
HTML
{% extends 'base.html' %}
|
|
{% load i18n %}
|
|
{% block title %}{{ title }} | {% trans 'Learning management system' %}{% endblock title %}
|
|
{% load crispy_forms_tags %}
|
|
{% load static %}
|
|
|
|
{% block content %}
|
|
|
|
<nav style="--bs-breadcrumb-divider: '>';" aria-label="breadcrumb">
|
|
<ol class="breadcrumb">
|
|
<li class="breadcrumb-item"><a href="/">{% trans 'Home' %}</a></li>
|
|
<li class="breadcrumb-item"><a href="{% url 'course_allocation_view' %}">{% trans 'Course Allocations' %}</a></li>
|
|
<li class="breadcrumb-item active" aria-current="page">{% trans 'Allocation Form' %}</li>
|
|
</ol>
|
|
</nav>
|
|
|
|
{% include 'snippets/messages.html' %}
|
|
|
|
<div class="row">
|
|
<div class="col-md-6 mx-auto">
|
|
<div class="card">
|
|
<p class="form-title">{% trans 'Course Allocation Form' %}</p>
|
|
<div class="p-3">
|
|
<form action="" method="POST">{% csrf_token %}
|
|
{{ form.lecturer|as_crispy_field }}
|
|
{{ form.courses|as_crispy_field }}
|
|
|
|
{% for course in form.courses.all %}{{ course }}{% endfor %}
|
|
|
|
<input class="btn btn-outline-primary" type="submit" value="{% trans 'Save' %}">
|
|
</form>
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
|
|
{% endblock content %}
|