Files
netbox/netbox/templates/ui/panels/_base.html
Jeremy Stretch 59899d0d9a Lots of cleanup
2025-11-04 16:49:56 -05:00

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>