mirror of
https://github.com/netbox-community/netbox.git
synced 2026-04-12 12:09:50 +02:00
18 lines
458 B
HTML
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" }} -->
|