Files
PyRIGS/RIGS/templates/rigboard.html
2020-03-09 23:18:56 +00:00

14 lines
416 B
HTML

{% extends 'base_rigs.html' %}
{% block title %}Rigboard{% endblock %}
{% block content %}
<div>
<h1 class="bd-title" id="content">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 %}