powerport.html 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. <tr class="powerport{% if pp.cable.status %} success{% elif pp.cable %} info{% endif %}">
  2. {# Name #}
  3. <td>
  4. <i class="fa fa-fw fa-bolt"></i> {{ pp }}
  5. </td>
  6. {# Description #}
  7. <td>
  8. {{ pp.description }}
  9. </td>
  10. {# Cable #}
  11. <td>
  12. {% if pp.cable %}
  13. <a href="{{ pp.cable.get_absolute_url }}">{{ pp.cable }}</a>
  14. {% else %}
  15. &mdash;
  16. {% endif %}
  17. </td>
  18. {# Connection #}
  19. {% if pp.connected_endpoint %}
  20. <td>
  21. <a href="{% url 'dcim:device' pk=pp.connected_endpoint.device.pk %}">{{ pp.connected_endpoint.device }}</a>
  22. </td>
  23. <td>
  24. {{ pp.connected_endpoint }}
  25. </td>
  26. {% else %}
  27. <td colspan="2">
  28. <span class="text-muted">Not connected</span>
  29. </td>
  30. {% endif %}
  31. {# Actions #}
  32. <td class="text-right noprint">
  33. {% if pp.cable %}
  34. {% include 'dcim/inc/cable_toggle_buttons.html' with cable=pp.cable %}
  35. {% elif perms.dcim.add_cable %}
  36. <a href="{% url 'dcim:powerport_connect' termination_a_id=pp.pk %}?return_url={{ device.get_absolute_url }}" title="Connect" class="btn btn-success btn-xs">
  37. <i class="glyphicon glyphicon-resize-small" aria-hidden="true"></i>
  38. </a>
  39. {% endif %}
  40. {% if perms.dcim.change_powerport %}
  41. <a href="{% url 'dcim:powerport_edit' pk=pp.pk %}" title="Edit port" class="btn btn-info btn-xs">
  42. <i class="glyphicon glyphicon-pencil" aria-hidden="true"></i>
  43. </a>
  44. {% endif %}
  45. {% if perms.dcim.delete_powerport %}
  46. {% if pp.connected_endpoint %}
  47. <button class="btn btn-danger btn-xs" disabled="disabled">
  48. <i class="glyphicon glyphicon-trash" aria-hidden="true"></i>
  49. </button>
  50. {% else %}
  51. <a href="{% url 'dcim:powerport_delete' pk=pp.pk %}?return_url={{ device.get_absolute_url }}" title="Delete port" class="btn btn-danger btn-xs">
  52. <i class="glyphicon glyphicon-trash" aria-hidden="true"></i>
  53. </a>
  54. {% endif %}
  55. {% endif %}
  56. </td>
  57. </tr>