mirror of
https://github.com/nottinghamtec/PyRIGS.git
synced 2026-01-17 13:32:15 +00:00
17 lines
497 B
HTML
17 lines
497 B
HTML
{% extends request.is_ajax|yesno:"base_ajax.html,base_rigs.html" %}
|
|
{% load widget_tweaks %}
|
|
{% load paginator from filters %}
|
|
{% load url_replace from filters %}
|
|
{% load orderby from filters %}
|
|
|
|
{% block title %}People{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="row">
|
|
<div class="col-sm-10">
|
|
<h3>People</h3>
|
|
</div>
|
|
</div>
|
|
{% include 'partials/generic_list.html' with edit="person_update" detail="person_detail" create="person_create" %}
|
|
{% endblock %}
|