device_inventory.html 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. {% extends '_base.html' %}
  2. {% block title %}{{ device }} - Inventory{% endblock %}
  3. {% block content %}
  4. {% include 'dcim/inc/device_header.html' with active_tab='inventory' %}
  5. <div class="row">
  6. <div class="col-md-4">
  7. <div class="panel panel-default">
  8. <div class="panel-heading">
  9. <strong>Chassis</strong>
  10. </div>
  11. <table class="table table-hover panel-body attr-table">
  12. <tr>
  13. <td>Model</td>
  14. <td>{{ device.device_type.full_name }}</td>
  15. </tr>
  16. <tr>
  17. <td>Serial Number</td>
  18. <td>
  19. {% if device.serial %}
  20. <span>{{ device.serial }}</span>
  21. {% else %}
  22. <span class="text-muted">N/A</span>
  23. {% endif %}
  24. </td>
  25. </tr>
  26. <tr>
  27. <td>Asset Tag</td>
  28. <td>
  29. {% if device.asset_tag %}
  30. <span>{{ device.asset_tag }}</span>
  31. {% else %}
  32. <span class="text-muted">N/A</span>
  33. {% endif %}
  34. </td>
  35. </tr>
  36. </table>
  37. </div>
  38. </div>
  39. <div class="col-md-8">
  40. <div class="panel panel-default">
  41. <div class="panel-heading">
  42. <strong>Hardware</strong>
  43. </div>
  44. <table class="table table-hover table-condensed panel-body" id="hardware">
  45. <thead>
  46. <tr>
  47. <th>Name</th>
  48. <th></th>
  49. <th>Manufacturer</th>
  50. <th>Part Number</th>
  51. <th>Serial Number</th>
  52. <th>Asset Tag</th>
  53. <th>Description</th>
  54. <th></th>
  55. </tr>
  56. </thead>
  57. <tbody>
  58. {% for item in inventory_items %}
  59. {% with template_name='dcim/inc/inventoryitem.html' indent=0 %}
  60. {% include template_name %}
  61. {% endwith %}
  62. {% endfor %}
  63. </tbody>
  64. </table>
  65. </div>
  66. {% if perms.dcim.add_inventoryitem %}
  67. <a href="{% url 'dcim:inventoryitem_add' device=device.pk %}" class="btn btn-success">
  68. <span class="fa fa-plus" aria-hidden="true"></span>
  69. Add Inventory Item
  70. </a>
  71. {% endif %}
  72. </div>
  73. </div>
  74. {% endblock %}