mirror of
https://github.com/nottinghamtec/PyRIGS.git
synced 2026-01-17 05:22:16 +00:00
11 lines
303 B
HTML
11 lines
303 B
HTML
{% extends request.is_ajax|yesno:"base_ajax.html,base_rigs.html" %}
|
|
|
|
{% block title %}People{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="row">
|
|
<h3>People</h3>
|
|
</div>
|
|
{% include 'partials/generic_list.html' with edit="person_update" detail="person_detail" create="person_create" %}
|
|
{% endblock %}
|