Files
PyRIGS/RIGS/templates/rigboard.html

14 lines
395 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-outline-primary float-right my-3">New <i class="fas fa-plus"></i></a>
{% endif %}
</div>
{% include 'event_table.html' %}
{% endblock %}