| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- {% extends 'dcim/moduletype/base.html' %}
- {% load buttons %}
- {% load helpers %}
- {% load plugins %}
- {% load i18n %}
- {% block content %}
- <div class="row">
- <div class="col col-md-6">
- <div class="card">
- <h2 class="card-header">{% trans "Module Type" %}</h2>
- <table class="table table-hover attr-table">
- <tr>
- <th scope="row">{% trans "Manufacturer" %}</th>
- <td>{{ object.manufacturer|linkify }}</td>
- </tr>
- <tr>
- <th scope="row">{% trans "Model Name" %}</th>
- <td>{{ object.model }}</td>
- </tr>
- <tr>
- <th scope="row">{% trans "Part Number" %}</th>
- <td>{{ object.part_number|placeholder }}</td>
- </tr>
- <tr>
- <th scope="row">{% trans "Description" %}</th>
- <td>{{ object.description|placeholder }}</td>
- </tr>
- <tr>
- <th scope="row">{% trans "Airflow" %}</th>
- <td>
- {{ object.get_airflow_display|placeholder }}
- </td>
- </tr>
- <tr>
- <th scope="row">{% trans "Weight" %}</th>
- <td>
- {% if object.weight %}
- {{ object.weight|floatformat }} {{ object.get_weight_unit_display }}
- {% else %}
- {{ ''|placeholder }}
- {% endif %}
- </td>
- </tr>
- </table>
- </div>
- {% include 'inc/panels/tags.html' %}
- {% include 'inc/panels/comments.html' %}
- {% plugin_left_page object %}
- </div>
- <div class="col col-md-6">
- {% include 'inc/panels/related_objects.html' %}
- {% include 'inc/panels/custom_fields.html' %}
- {% include 'inc/panels/image_attachments.html' %}
- {% plugin_right_page object %}
- </div>
- </div>
- <div class="row">
- <div class="col col-md-12">
- {% plugin_full_width_page object %}
- </div>
- </div>
- {% endblock %}
|