| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- {% extends 'generic/object.html' %}
- {% load helpers %}
- {% load plugins %}
- {% load render_table from django_tables2 %}
- {% load i18n %}
- {% block extra_controls %}
- {% if perms.circuits.add_circuit %}
- <a href="{% url 'circuits:circuit_add' %}?type={{ object.pk }}" class="btn btn-primary">
- <span class="mdi mdi-plus-thick" aria-hidden="true"></span> {% trans "Add Circuit" %}
- </a>
- {% endif %}
- {% endblock extra_controls %}
- {% block content %}
- <div class="row mb-3">
- <div class="col col-12 col-md-6">
- <div class="card">
- <h2 class="card-header">{% trans "Circuit Type" %}</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 "Color" %}</th>
- <td>
- {% if object.color %}
- <span class="badge color-label" style="background-color: #{{ object.color }}"> </span>
- {% else %}
- {{ ''|placeholder }}
- {% endif %}
- </td>
- </tr>
- </table>
- </div>
- {% include 'inc/panels/tags.html' %}
- {% plugin_left_page object %}
- </div>
- <div class="col col-12 col-md-6">
- {% include 'inc/panels/related_objects.html' %}
- {% include 'inc/panels/custom_fields.html' %}
- {% plugin_right_page object %}
- </div>
- </div>
- <div class="row mb-3">
- <div class="col col-md-12">
- {% plugin_full_width_page object %}
- </div>
- </div>
- {% endblock %}
|