2018-06-27 16:02:34 -04:00
|
|
|
{% extends '_base.html' %}
|
|
|
|
{% load buttons %}
|
|
|
|
|
|
|
|
{% block content %}
|
2019-03-05 15:42:47 -06:00
|
|
|
<div class="pull-right noprint">
|
2018-06-27 16:02:34 -04:00
|
|
|
{% if perms.extras.add_configcontext %}
|
|
|
|
{% add_button 'extras:configcontext_add' %}
|
|
|
|
{% endif %}
|
|
|
|
</div>
|
|
|
|
<h1>{% block title %}Config Contexts{% endblock %}</h1>
|
|
|
|
<div class="row">
|
2018-08-09 12:22:34 -04:00
|
|
|
<div class="col-md-9">
|
2018-11-13 15:08:55 -05:00
|
|
|
{% include 'utilities/obj_table.html' with bulk_edit_url='extras:configcontext_bulk_edit' bulk_delete_url='extras:configcontext_bulk_delete' %}
|
2018-06-27 16:02:34 -04:00
|
|
|
</div>
|
2019-03-05 15:42:47 -06:00
|
|
|
<div class="col-md-3 noprint">
|
2018-08-09 12:22:34 -04:00
|
|
|
{% include 'inc/search_panel.html' %}
|
|
|
|
</div>
|
2018-06-27 16:02:34 -04:00
|
|
|
</div>
|
|
|
|
{% endblock %}
|