mirror of
https://github.com/nottinghamtec/PyRIGS.git
synced 2026-01-17 13:32:15 +00:00
11 lines
300 B
HTML
11 lines
300 B
HTML
{% extends request.is_ajax|yesno:"base_ajax.html,base_rigs.html" %}
|
|
|
|
{% block title %}Venues{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="row">
|
|
<h3>Venues</h3>
|
|
</div>
|
|
{% include 'partials/generic_list.html' with edit="venue_update" detail="venue_detail" create="venue_create" %}
|
|
{% endblock %}
|