mirror of
https://github.com/netbox-community/netbox.git
synced 2025-12-26 06:07:11 +00:00
80 lines
2.5 KiB
HTML
80 lines
2.5 KiB
HTML
{% extends 'generic/object.html' %}
|
|
{% load helpers %}
|
|
{% load plugins %}
|
|
{% load i18n %}
|
|
|
|
{% block title %}{{ object.name }}{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="row">
|
|
<div class="col col-12 col-md-6">
|
|
<div class="card">
|
|
<h2 class="card-header">{% trans "Export Template" %}</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>
|
|
<tr>
|
|
<th scope="row">{% trans "MIME Type" %}</th>
|
|
<td>{{ object.mime_type|placeholder }}</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">{% trans "File Name" %}</th>
|
|
<td>{{ object.file_name|placeholder }}</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">{% trans "File Extension" %}</th>
|
|
<td>{{ object.file_extension|placeholder }}</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">{% trans "Attachment" %}</th>
|
|
<td>{% checkmark object.as_attachment %}</td>
|
|
</tr>
|
|
</table>
|
|
</div>
|
|
{% include 'core/inc/datafile_panel.html' %}
|
|
{% plugin_left_page object %}
|
|
</div>
|
|
<div class="col col-md-6">
|
|
<div class="card">
|
|
<h2 class="card-header">{% trans "Assigned Models" %}</h2>
|
|
<table class="table table-hover attr-table">
|
|
{% for object_type in object.object_types.all %}
|
|
<tr>
|
|
<td>{{ object_type }}</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</table>
|
|
</div>
|
|
<div class="card">
|
|
<h2 class="card-header">{% trans "Environment Parameters" %}</h2>
|
|
<div class="card-body">
|
|
{% if object.environment_params %}
|
|
<pre>{{ object.environment_params|json }}</pre>
|
|
{% else %}
|
|
<span class="text-muted">{% trans "None" %}</span>
|
|
{% endif %}
|
|
</div>
|
|
</div>
|
|
{% plugin_right_page object %}
|
|
</div>
|
|
</div>
|
|
<div class="row">
|
|
<div class="col col-md-12">
|
|
<div class="card">
|
|
<h2 class="card-header">{% trans "Template" %}</h2>
|
|
<div class="card-body">
|
|
{% include 'inc/sync_warning.html' %}
|
|
<pre>{{ object.template_code }}</pre>
|
|
</div>
|
|
</div>
|
|
{% plugin_full_width_page object %}
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|