mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
13 lines
505 B
HTML
13 lines
505 B
HTML
{% load i18n %}
|
|
{% if htmx_url and has_permission %}
|
|
<div class="htmx-container" hx-get="{{ htmx_url }}" hx-trigger="load"></div>
|
|
{% elif htmx_url %}
|
|
<div class="text-muted text-center">
|
|
<i class="mdi mdi-lock-outline"></i> {% trans "No permission to view this content" %}.
|
|
</div>
|
|
{% else %}
|
|
<div class="text-danger text-center">
|
|
<i class="mdi mdi-alert"></i> {% trans "Unable to load content. Invalid view name" %}: <span class="font-monospace">{{ viewname }}</span>
|
|
</div>
|
|
{% endif %}
|