mirror of
https://github.com/netbox-community/netbox.git
synced 2025-12-18 11:22:25 -06:00
Some checks failed
CodeQL / Analyze (${{ matrix.language }}) (none, python) (push) Has been cancelled
CodeQL / Analyze (${{ matrix.language }}) (none, actions) (push) Has been cancelled
CodeQL / Analyze (${{ matrix.language }}) (none, javascript-typescript) (push) Has been cancelled
CI / build (20.x, 3.10) (push) Has been cancelled
CI / build (20.x, 3.11) (push) Has been cancelled
CI / build (20.x, 3.12) (push) Has been cancelled
40 lines
1.2 KiB
HTML
40 lines
1.2 KiB
HTML
{% extends 'generic/object.html' %}
|
|
{% load helpers %}
|
|
{% load static %}
|
|
{% load i18n %}
|
|
|
|
{% block content %}
|
|
<div class="row">
|
|
<div class="col col-6">
|
|
<div class="card">
|
|
<h2 class="card-header">{% trans "Config Context Profile" %}</h2>
|
|
<table class="table table-hover attr-table">
|
|
<tr>
|
|
<th scope="row">{% trans "Name" %}</th>
|
|
<td>{{ object.name }}</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">{% trans "Description" %}</th>
|
|
<td>{{ object.description|placeholder }}</td>
|
|
</tr>
|
|
</table>
|
|
</div>
|
|
{% include 'core/inc/datafile_panel.html' %}
|
|
{% include 'inc/panels/custom_fields.html' %}
|
|
{% include 'inc/panels/tags.html' %}
|
|
{% include 'inc/panels/comments.html' %}
|
|
</div>
|
|
<div class="col col-6">
|
|
<div class="card">
|
|
<h2 class="card-header d-flex justify-content-between">
|
|
{% trans "JSON Schema" %}
|
|
<div>
|
|
{% copy_content "schema" %}
|
|
</div>
|
|
</h2>
|
|
<pre class="card-body rendered-context-data m-0" id="schema">{{ object.schema|json }}</pre>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|