mirror of
https://github.com/netbox-community/netbox.git
synced 2026-03-23 18:01:37 +01:00
14 lines
289 B
HTML
14 lines
289 B
HTML
<div class="card">
|
|
<h2 class="card-header">
|
|
{{ title }}
|
|
{% if actions %}
|
|
<div class="card-actions">
|
|
{% for action in actions %}
|
|
{% render action %}
|
|
{% endfor %}
|
|
</div>
|
|
{% endif %}
|
|
</h2>
|
|
{% block panel_content %}{% endblock %}
|
|
</div>
|