mirror of
https://github.com/nottinghamtec/PyRIGS.git
synced 2026-01-17 13:32:15 +00:00
14 lines
446 B
HTML
14 lines
446 B
HTML
{% extends request.is_ajax|yesno:"base_ajax.html,base_rigs.html" %}
|
|
{% load widget_tweaks %}
|
|
|
|
{% block title %}Organisations{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="row">
|
|
<div class="col-sm-10">
|
|
<h3>Organisations</h3>
|
|
</div>
|
|
</div>
|
|
{% include 'partials/generic_list.html' with edit="organisation_update" detail="organisation_detail" create="organisation_create" union_account=True %}
|
|
{% endblock %}
|