mirror of
https://github.com/nottinghamtec/PyRIGS.git
synced 2026-01-16 21:12:13 +00:00
* Revive this concept for 2023
(cherry picked from commit b3939d8426)
# Conflicts:
# pipeline/source_assets/scss/dark_screen.scss
* Update app.json
* Updates to all three layouts
19 lines
793 B
HTML
19 lines
793 B
HTML
{% extends 'base_rigs.html' %}
|
|
{% load button from filters %}
|
|
|
|
{% block content %}
|
|
<div class="row align-items-center justify-content-between py-2 align-middle">
|
|
<div class="col-sm-12 col-md align-middle d-flex flex-wrap">
|
|
Key: <span class="table-success mr-1 px-2 rounded">Ready</span><span class="table-warning mr-1 px-2 rounded text-nowrap">Action Required</span><span class="table-danger mr-1 px-2 rounded text-nowrap">Needs MIC</span><span class="table-secondary mr-1 px-2 rounded">Cancelled</span><span class="table-info px-2 rounded text-nowrap">Non-Rig</span>
|
|
</div>
|
|
{% if perms.RIGS.add_event %}
|
|
<div class="col text-right">
|
|
{% button 'new' 'event_create' %}
|
|
</div>
|
|
{% endif %}
|
|
</div>
|
|
|
|
{% include 'partials/event_table.html' %}
|
|
|
|
{% endblock %}
|