2017-05-16 16:19:55 -04:00
|
|
|
{% load render_table from django_tables2 %}
|
2016-03-01 11:23:03 -05:00
|
|
|
|
2021-03-13 02:19:42 -07:00
|
|
|
<div class="card {% if panel_class %}bg-{{ panel_class }}{% endif %}">
|
2016-03-01 11:23:03 -05:00
|
|
|
{% if heading %}
|
2021-03-13 02:19:42 -07:00
|
|
|
<h5 class="card-header">
|
|
|
|
{{ heading }}
|
|
|
|
</h5>
|
2016-03-01 11:23:03 -05:00
|
|
|
{% endif %}
|
2021-03-13 02:19:42 -07:00
|
|
|
<div class="card-body">
|
2016-03-01 11:23:03 -05:00
|
|
|
{% if table.rows %}
|
2017-05-16 16:19:55 -04:00
|
|
|
{% render_table table 'inc/table.html' %}
|
2016-03-01 11:23:03 -05:00
|
|
|
{% else %}
|
2021-03-13 02:19:42 -07:00
|
|
|
<div class="text-muted">None</div>
|
2016-03-01 11:23:03 -05:00
|
|
|
{% endif %}
|
2021-03-13 02:19:42 -07:00
|
|
|
</div>
|
2016-03-01 11:23:03 -05:00
|
|
|
</div>
|