mirror of
https://github.com/nottinghamtec/PyRIGS.git
synced 2026-01-17 05:22:16 +00:00
Also: - Find and replace panel -> card - Some base template work - gulpfile things, added dep on django-gulp
134 lines
6.2 KiB
HTML
134 lines
6.2 KiB
HTML
{% extends 'base_client.html' %}
|
|
{% load widget_tweaks %}
|
|
{% load static %}
|
|
|
|
{% block js %}
|
|
<script src="{% static "js/tooltip.js" %}"></script>
|
|
<script>
|
|
$(function () {
|
|
$('[data-toggle="tooltip"]').tooltip();
|
|
});
|
|
|
|
$('form').on('submit', function () {
|
|
$('#loading-modal').modal({
|
|
backdrop: 'static',
|
|
show: true
|
|
});
|
|
});
|
|
</script>
|
|
{% endblock %}
|
|
|
|
{% block title %}
|
|
{% if event.is_rig %}N{{ event.pk|stringformat:"05d" }}{% else %}{{ event.pk }}{% endif %} | {{ event.name }}
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="row">
|
|
<div class="col-sm-12">
|
|
<h1>
|
|
{% if event.is_rig %}N{{ event.pk|stringformat:"05d" }}{% else %}{{ event.pk }}{% endif %}
|
|
| {{ event.name }} {% if event.dry_hire %}<span class="badge">Dry Hire</span>{% endif %}
|
|
</h1>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="row">
|
|
{% include 'client_eventdetails.html' %}
|
|
</div>
|
|
|
|
<div class="row">
|
|
<div class="col-sm-12">
|
|
{% with object=event %}
|
|
{% include 'item_table.html' %}
|
|
{% endwith %}
|
|
</div>
|
|
</div>
|
|
|
|
<div class="row">
|
|
<div class="col-sm-12">
|
|
<div class="card card-default">
|
|
<div class="card-heading" id="eventauth">Event Authorisation</div>
|
|
|
|
<div class="card-body">
|
|
<form class="form-horizontal itemised_form" role="form" method="POST" action="#eventauth">
|
|
{% csrf_token %}
|
|
{% include 'form_errors.html' %}
|
|
<div class="row">
|
|
<div class="col-sm-12">
|
|
<p>
|
|
I agree that I am authorised to approve this event. I agree that I am the
|
|
<strong>President/Treasurer or account holder</strong> of the hirer, or that I
|
|
have the written permission of the
|
|
<strong>President/Treasurer or account holder</strong> of the hirer stating that
|
|
I can authorise this event.
|
|
</p>
|
|
</div>
|
|
|
|
<div class="col-sm-12 col-md-6">
|
|
<div class="col-sm-12 form-group" data-toggle="tooltip"
|
|
title="Your name as the person authorising the event.">
|
|
<label for="{{ form.name.id_for_label }}"
|
|
class="col-sm-4 control-label">{{ form.name.label }}</label>
|
|
|
|
<div class="col-sm-8">
|
|
{% render_field form.name class+="form-control" %}
|
|
</div>
|
|
</div>
|
|
|
|
<div class="col-sm-12 form-group" data-toggle="tooltip"
|
|
title="Your Student ID or Staff username as the person authorising the event.">
|
|
<label for="{{ form.uni_id.id_for_label }}"
|
|
class="col-sm-4 control-label">{{ form.uni_id.label }}</label>
|
|
<div class="col-sm-8">
|
|
{% render_field form.uni_id class+="form-control" %}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="col-sm-12 col-md-6">
|
|
<div class="col-sm-12 form-group" data-toggle="tooltip"
|
|
title="The Students' Union account code you wish this event to be charged to.">
|
|
<label for="{{ form.account_code.id_for_label }}"
|
|
class="col-sm-4 control-label">{{ form.account_code.label }}</label>
|
|
<div class="col-sm-8">
|
|
{% render_field form.account_code class+="form-control" %}
|
|
</div>
|
|
</div>
|
|
|
|
<div class="col-sm-12 form-group" data-toggle="tooltip"
|
|
title="The full amount chargable for this event as displayed above, including VAT.">
|
|
<label for="{{ form.amount.id_for_label }}"
|
|
class="col-sm-4 control-label">{{ form.amount.label }}</label>
|
|
<div class="col-sm-8">
|
|
{% render_field form.amount class+="form-control" %}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="col-sm-12">
|
|
<div class="col-sm-12 col-md-8 form-group">
|
|
<div class="col-sm-offset-4 col-sm-8 col-md-offset-3" data-toggle="tooltip"
|
|
title="In order to book an event you must agree to the TEC Terms of Hire.">
|
|
<div class="checkbox">
|
|
<label>
|
|
{% render_field form.tos %} I have read and agree to the TEC
|
|
<a href="{{ tos_url }}">Terms of Hire</a>. E&OE.
|
|
</label>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="col-sm-12 col-md-4 text-right">
|
|
<div class="btn-group">
|
|
<button class="btn btn-primary" type="submit">Authorise</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|