mirror of
https://github.com/nottinghamtec/PyRIGS.git
synced 2026-01-16 21:12:13 +00:00
Ref #501...may help/fix this...uncertain yet. Need to finish writing the relevant test!
62 lines
2.5 KiB
HTML
62 lines
2.5 KiB
HTML
{% extends 'base_training.html' %}
|
|
|
|
{% load static %}
|
|
{% load button from filters %}
|
|
{% load colour_from_depth from tags %}
|
|
|
|
{% block css %}
|
|
{{ block.super }}
|
|
<link rel="stylesheet" type="text/css" href="{% static 'css/selects.css' %}"/>
|
|
{% endblock %}
|
|
|
|
{% block preload_js %}
|
|
{{ block.super }}
|
|
<script src="{% static 'js/selects.js' %}"></script>
|
|
{% endblock %}
|
|
|
|
{% block js %}
|
|
{{ block.super }}
|
|
<script src="{% static 'js/autocompleter.js' %}"></script>
|
|
<script src="{% static 'js/interaction.js' %}"></script>
|
|
<script src="{% static 'js/tooltip.js' %}"></script>
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="row">
|
|
<div class="col">
|
|
<form class="form" method="POST" id="session_form" action="{% url 'session_log' %}">
|
|
{% include 'form_errors.html' %}
|
|
{% csrf_token %}
|
|
<h3>People</h3>
|
|
<div class="form-group row" id="supervisor_group">
|
|
{% include 'partials/supervisor_field.html' %}
|
|
</div>
|
|
<div class="form-group row" id="trainees_group">
|
|
<label for="trainees_id" class="col-sm-2">Select Attendees</label>
|
|
<select multiple name="trainees" id="trainees_id" class="selectpicker col-sm-10" data-live-search="true" data-sourceurl="{% url 'api_secure' model='profile' %}?fields=first_name,last_name,initials" data-noclear="true">
|
|
</select>
|
|
</div>
|
|
<h3>Training Items</h3>
|
|
{% for depth in depths %}
|
|
<div class="form-group row" id="{{depth.0}}">
|
|
<label for="selectpicker" class="col-sm-2 text-{% colour_from_depth depth.0 %} py-1">{{ depth.1 }} Items</label>
|
|
<select multiple name="items_{{depth.0}}" id="items_{{depth.0}}_id" class="selectpicker col-sm-10 px-0" data-live-search="true" data-sourceurl="{% url 'api_secure' model='training_item' %}?fields=display_id,description&filters=active" data-noclear="true">
|
|
</select>
|
|
</div>
|
|
{% endfor %}
|
|
<h3>Session Information</h3>
|
|
<div class="form-group row">
|
|
{% include 'partials/form_field.html' with field=form.date col='col-sm-6' %}
|
|
{% button 'today' id='id_date' %}
|
|
</div>
|
|
<div class="form-group">
|
|
{% include 'partials/form_field.html' with field=form.notes %}
|
|
</div>
|
|
<div class="col-sm-12 text-right my-3">
|
|
{% button 'submit' %}
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|