1
0
Fork 0

Upload files to "dnac_integration/templates/dnac_integration"

This commit is contained in:
Justin Parsell 2024-02-15 17:49:48 +00:00
parent 9db0d0f9dd
commit 6b124d7212
1 changed files with 34 additions and 0 deletions

View File

@ -0,0 +1,34 @@
{% extends 'generic/object.html' %}
{% block content %}
<div class="row mb-3">
<div class="col col-md-6">
<div class="card">
<h5 class="card-header">DNAC Server</h5>
<div class="card-body">
<table class="table table-hover attr-table">
<tr>
<th scope="row">Hostname</th>
<td>{{ object.name }}</td>
</tr>
<tr>
<th scope="row">Username</th>
<td>{{ object.get_username_display }}</td>
</tr>
<tr>
<th scope="row">Version</th>
<td>{{ object.get_version_display }}</td>
</tr>
<tr>
<th scope="row">Verify</th>
<td>{{ object.get_verify_display }}</td>
</tr>
</table>
</div>
</div>
{% include 'inc/panels/custom_fields.html' %}
</div>
<div class="col col-md-6">
{% include 'inc/panels/tags.html' %}
</div>
</div>
{% endblock content %}