Files
netbox/netbox/templates/ui/panels/_base.html
2026-04-02 11:15:08 -04:00

18 lines
458 B
HTML

<!-- begin {{ panel_class|default:"panel" }} -->
<div class="card">
{% if title or actions %}
<h2 class="card-header">
{{ title|default:"" }}
{% if actions %}
<div class="card-actions">
{% for action in actions %}
{% render action %}
{% endfor %}
</div>
{% endif %}
</h2>
{% endif %}
{% block panel_content %}{% endblock %}
</div>
<!-- end {{ panel_class|default:"panel" }} -->