mirror of
https://github.com/netbox-community/netbox.git
synced 2026-03-31 14:43:36 +02:00
14 lines
365 B
HTML
14 lines
365 B
HTML
<div class="card">
|
|
<h2 class="card-header">{{ title }}</h2>
|
|
<table class="table table-hover attr-table">
|
|
{% for label, attr in attrs.items %}
|
|
<tr>
|
|
<th scope="row">{{ label }}</th>
|
|
<td>
|
|
<div class="d-flex justify-content-between align-items-start">{{ attr }}</div>
|
|
</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</table>
|
|
</div>
|