58 lines
2.1 KiB
HTML
58 lines
2.1 KiB
HTML
{% load i18n %}
|
|
{% extends 'base.html' %}
|
|
{% 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>
|
|
|
|
{% if messages %}
|
|
{% for message in messages %}
|
|
{% if message.tags == 'error' %}
|
|
<div class="alert alert-danger">
|
|
<i class="fas fa-exclamation-circle"></i>{{ message }}
|
|
</div>
|
|
{% else %}
|
|
<div class="alert alert-success">
|
|
<i class="fas fa-check-circle"></i>{{ message }}
|
|
</div>
|
|
{% endif %}
|
|
{% endfor %}
|
|
{% endif %}
|
|
|
|
<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|crispy }} -->
|
|
<div class="form-group">
|
|
{{ form.lecturer.label }}{{ form.lecturer }}
|
|
<span class="danger">{{ form.lecturer.errors }}</span>
|
|
</div>
|
|
<div class="form-group">
|
|
{{ form.courses.label }}{{ form.courses }}
|
|
<span class="danger">{{ form.courses.errors }}</span>
|
|
</div>
|
|
|
|
{% 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 %}
|