mirror of
https://github.com/netbox-community/netbox.git
synced 2025-12-18 19:32:24 -06:00
8 lines
351 B
HTML
8 lines
351 B
HTML
{% if htmx_url %}
|
|
<div class="htmx-container" hx-get="{{ htmx_url }}{% if page_size %}?per_page={{ page_size }}{% endif %}" hx-trigger="load"></div>
|
|
{% else %}
|
|
<div class="text-danger text-center">
|
|
<i class="mdi mdi-alert"></i> Unable to load content. Invalid view name: <span class="font-monospace">{{ viewname }}</span>
|
|
</div>
|
|
{% endif %}
|