mirror of
https://github.com/nottinghamtec/PyRIGS.git
synced 2026-01-17 05:22:16 +00:00
14 lines
403 B
HTML
14 lines
403 B
HTML
{% extends 'base_rigs.html' %}
|
|
|
|
{% block title %}Rigboard{% endblock %}
|
|
|
|
{% block content %}
|
|
<div>
|
|
<h1 class="bd-title">Rigboard</h1>
|
|
{% if perms.RIGS.add_event %}
|
|
<a href="{% url 'event_create' %}" class="btn btn-lg btn-outline-primary float-right">New <span class="fas fa-plus"></span></a>
|
|
{% endif %}
|
|
</div>
|
|
{% include 'event_table.html' %}
|
|
{% endblock %}
|