mirror of
https://github.com/nottinghamtec/PyRIGS.git
synced 2026-01-17 13:32:15 +00:00
19 lines
579 B
HTML
19 lines
579 B
HTML
{% extends 'base_rigs.html' %}
|
|
|
|
{% block title %}Rigboard{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="row">
|
|
<h1 class="bd-title col-xs-12">Rigboard</h1>
|
|
{% if perms.RIGS.add_event %}
|
|
<a href="{% url 'event_create' %}" class="btn btn-success float-right my-3 col-xs-12">New <i class="fas fa-plus"></i></a>
|
|
{% endif %}
|
|
</div>
|
|
<div class="d-none d-md-block">
|
|
{% include 'event_table.html' %}
|
|
</div>
|
|
<div class="d-xs-block d-sm-block d-md-none">
|
|
{% include 'event_table_mobile.html' %}
|
|
</div>
|
|
{% endblock %}
|