| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- {% extends 'generic/object.html' %}
- {% load helpers %}
- {% load plugins %}
- {% block breadcrumbs %}
- <li class="breadcrumb-item"><a href="{% url 'ipam:routetarget_list' %}">Route Targets</a></li>
- <li class="breadcrumb-item">{{ object }}</li>
- {% endblock %}
- {% block content %}
- <div class="row">
- <div class="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><code>{{ object.name }}</code></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>
-
- {% plugin_left_page object %}
- </div>
- <div class="col-md-6">
- <div class="mb-4">
- {% include 'panel_table.html' with table=importing_vrfs_table heading="Importing VRFs" %}
- </div>
- {% include 'panel_table.html' with table=exporting_vrfs_table heading="Exporting VRFs" %}
- {% plugin_right_page object %}
- </div>
- </div>
- <div class="row my-3">
- <div class="col-md-6">
- {% include 'extras/inc/tags_panel.html' with tags=object.tags.all url='ipam:routetarget_list' %}
- </div>
- <div class="col-md-6">
- {% include 'inc/custom_fields_panel.html' %}
- </div>
- </div>
- <div class="row">
- <div class="col-md-12">
- {% plugin_full_width_page object %}
- </div>
- </div>
- {% endblock %}
|