|
@@ -3,50 +3,48 @@
|
|
|
{% load plugins %}
|
|
{% load plugins %}
|
|
|
|
|
|
|
|
{% block content %}
|
|
{% block content %}
|
|
|
-<div class="row">
|
|
|
|
|
- <div class="col col-md-6">
|
|
|
|
|
- <div class="card">
|
|
|
|
|
- <h5 class="card-header">
|
|
|
|
|
- Route Target
|
|
|
|
|
- </h5>
|
|
|
|
|
- <div class="card-body">
|
|
|
|
|
- <table class="table table-hover attr-table">
|
|
|
|
|
- <tr>
|
|
|
|
|
- <th scope="row">Name</th>
|
|
|
|
|
- <td class="font-monospace">{{ object.name }}</td>
|
|
|
|
|
- </tr>
|
|
|
|
|
- <tr>
|
|
|
|
|
- <th scope="row">Tenant</th>
|
|
|
|
|
- <td>
|
|
|
|
|
- {% if object.tenant %}
|
|
|
|
|
- <a href="{{ object.tenant.get_absolute_url }}">{{ object.tenant }}</a>
|
|
|
|
|
- {% else %}
|
|
|
|
|
- <span class="text-muted">None</span>
|
|
|
|
|
- {% endif %}
|
|
|
|
|
- </td>
|
|
|
|
|
- </tr>
|
|
|
|
|
- <tr>
|
|
|
|
|
- <th scope="row">Description</th>
|
|
|
|
|
- <td>{{ object.description|placeholder }}</td>
|
|
|
|
|
- </tr>
|
|
|
|
|
- </table>
|
|
|
|
|
- </div>
|
|
|
|
|
|
|
+ <div class="row">
|
|
|
|
|
+ <div class="col col-md-6">
|
|
|
|
|
+ <div class="card">
|
|
|
|
|
+ <h5 class="card-header">Route Target</h5>
|
|
|
|
|
+ <div class="card-body">
|
|
|
|
|
+ <table class="table table-hover attr-table">
|
|
|
|
|
+ <tr>
|
|
|
|
|
+ <th scope="row">Name</th>
|
|
|
|
|
+ <td class="font-monospace">{{ object.name }}</td>
|
|
|
|
|
+ </tr>
|
|
|
|
|
+ <tr>
|
|
|
|
|
+ <th scope="row">Tenant</th>
|
|
|
|
|
+ <td>
|
|
|
|
|
+ {% if object.tenant %}
|
|
|
|
|
+ <a href="{{ object.tenant.get_absolute_url }}">{{ object.tenant }}</a>
|
|
|
|
|
+ {% else %}
|
|
|
|
|
+ <span class="text-muted">None</span>
|
|
|
|
|
+ {% endif %}
|
|
|
|
|
+ </td>
|
|
|
|
|
+ </tr>
|
|
|
|
|
+ <tr>
|
|
|
|
|
+ <th scope="row">Description</th>
|
|
|
|
|
+ <td>{{ object.description|placeholder }}</td>
|
|
|
|
|
+ </tr>
|
|
|
|
|
+ </table>
|
|
|
</div>
|
|
</div>
|
|
|
- {% include 'extras/inc/tags_panel.html' with tags=object.tags.all url='ipam:routetarget_list' %}
|
|
|
|
|
- {% include 'inc/custom_fields_panel.html' %}
|
|
|
|
|
- {% plugin_left_page object %}
|
|
|
|
|
- </div>
|
|
|
|
|
- <div class="col col-md-6">
|
|
|
|
|
- <div class="mb-4">
|
|
|
|
|
|
|
+ </div>
|
|
|
|
|
+ {% include 'inc/panels/tags.html' with tags=object.tags.all url='ipam:routetarget_list' %}
|
|
|
|
|
+ {% include 'inc/panels/custom_fields.html' %}
|
|
|
|
|
+ {% plugin_left_page object %}
|
|
|
|
|
+ </div>
|
|
|
|
|
+ <div class="col col-md-6">
|
|
|
|
|
+ <div class="mb-4">
|
|
|
{% include 'inc/panel_table.html' with table=importing_vrfs_table heading="Importing VRFs" %}
|
|
{% include 'inc/panel_table.html' with table=importing_vrfs_table heading="Importing VRFs" %}
|
|
|
- </div>
|
|
|
|
|
- {% include 'inc/panel_table.html' with table=exporting_vrfs_table heading="Exporting VRFs" %}
|
|
|
|
|
- {% plugin_right_page object %}
|
|
|
|
|
|
|
+ </div>
|
|
|
|
|
+ {% include 'inc/panel_table.html' with table=exporting_vrfs_table heading="Exporting VRFs" %}
|
|
|
|
|
+ {% plugin_right_page object %}
|
|
|
</div>
|
|
</div>
|
|
|
-</div>
|
|
|
|
|
-<div class="row">
|
|
|
|
|
|
|
+ </div>
|
|
|
|
|
+ <div class="row">
|
|
|
<div class="col col-md-12">
|
|
<div class="col col-md-12">
|
|
|
- {% plugin_full_width_page object %}
|
|
|
|
|
|
|
+ {% plugin_full_width_page object %}
|
|
|
</div>
|
|
</div>
|
|
|
-</div>
|
|
|
|
|
|
|
+ </div>
|
|
|
{% endblock %}
|
|
{% endblock %}
|