platform.html 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. {% extends 'generic/object.html' %}
  2. {% load helpers %}
  3. {% load plugins %}
  4. {% load render_table from django_tables2 %}
  5. {% load i18n %}
  6. {% block breadcrumbs %}
  7. {{ block.super }}
  8. {% if object.manufacturer %}
  9. <li class="breadcrumb-item"><a href="{% url 'dcim:platform_list' %}?manufacturer_id={{ object.manufacturer.pk }}">{{ object.manufacturer }}</a></li>
  10. {% endif %}
  11. {% endblock %}
  12. {% block extra_controls %}
  13. {% if perms.dcim.add_device %}
  14. <a href="{% url 'dcim:device_add' %}?platform={{ object.pk }}" class="btn btn-sm btn-primary">
  15. <span class="mdi mdi-plus-thick" aria-hidden="true"></span> {% trans "Add Device" %}
  16. </a>
  17. {% endif %}
  18. {% endblock extra_controls %}
  19. {% block content %}
  20. <div class="row mb-3">
  21. <div class="col col-md-6">
  22. <div class="card">
  23. <h5 class="card-header">
  24. {% trans "Platform" %}
  25. </h5>
  26. <div class="card-body">
  27. <table class="table table-hover attr-table">
  28. <tr>
  29. <th scope="row">{% trans "Name" %}</th>
  30. <td>{{ object.name }}</td>
  31. </tr>
  32. <tr>
  33. <th scope="row">{% trans "Description" %}</th>
  34. <td>{{ object.description|placeholder }}</td>
  35. </tr>
  36. <tr>
  37. <th scope="row">{% trans "Manufacturer" %}</th>
  38. <td>{{ object.manufacturer|linkify|placeholder }}</td>
  39. </tr>
  40. <tr>
  41. <th scope="row">{% trans "Config Template" %}</th>
  42. <td>{{ object.config_template|linkify|placeholder }}</td>
  43. </tr>
  44. </table>
  45. </div>
  46. </div>
  47. {% include 'inc/panels/tags.html' %}
  48. {% plugin_left_page object %}
  49. </div>
  50. <div class="col col-md-6">
  51. {% include 'inc/panels/related_objects.html' %}
  52. {% include 'inc/panels/custom_fields.html' %}
  53. {% plugin_right_page object %}
  54. </div>
  55. </div>
  56. <div class="row mb-3">
  57. <div class="col col-md-12">
  58. {% plugin_full_width_page object %}
  59. </div>
  60. </div>
  61. {% endblock %}