Files
PyRIGS/RIGS/templates/rigboard.html

14 lines
315 B
HTML

{% extends 'base_rigs.html' %}
{% block title %}Rigboard{% endblock %}
{% block content %}
<h1>Rigboard</h1>
{% if perms.RIGS.add_event %}
<a href="{% url 'event_create' %}" class="btn btn-success my-3 float-right">New <i class="fas fa-plus"></i></a>
{% endif %}
{% include 'event_table.html' %}
{% endblock %}