mirror of
https://github.com/nottinghamtec/PyRIGS.git
synced 2026-01-17 05:22:16 +00:00
23 lines
730 B
HTML
23 lines
730 B
HTML
{% extends 'base_rigs.html' %}
|
|
{% load button from filters %}
|
|
|
|
{% block title %}Rigboard{% endblock %}
|
|
|
|
{% block content %}
|
|
<h1>Rigboard</h1>
|
|
|
|
<div class="row align-items-center justify-content-between py-2">
|
|
<div class="col-sm-12 col-md">
|
|
Key: <span class="table-success mr-1 px-2">Ready</span><span class="table-warning mr-1 px-2">Action Required</span><span class="table-danger mr-1 px-2">Needs MIC</span><span class="table-secondary mr-1 px-2">Cancelled</span><span class="table-info px-2">Non-Rig</span>
|
|
</div>
|
|
{% if perms.RIGS.add_event %}
|
|
<div class="col text-right">
|
|
{% button 'new' 'event_create' None %}
|
|
</div>
|
|
{% endif %}
|
|
</div>
|
|
|
|
{% include 'event_table.html' %}
|
|
|
|
{% endblock %}
|