circuit_terminations_swap.html 926 B

12345678910111213141516171819202122232425
  1. {% extends 'generic/confirmation_form.html' %}
  2. {% block title %}Swap Circuit Terminations{% endblock %}
  3. {% block message %}
  4. <p>Swap these terminations for circuit {{ circuit }}?</p>
  5. <ul>
  6. <li>
  7. <strong>A side:</strong>
  8. {% if termination_a %}
  9. {{ termination_a.site }} {% if termination_a.interface %}- {{ termination_a.interface.device }} {{ termination_a.interface }}{% endif %}
  10. {% else %}
  11. <span class="text-muted">None</span>
  12. {% endif %}
  13. </li>
  14. <li>
  15. <strong>Z side:</strong>
  16. {% if termination_z %}
  17. {{ termination_z.site }} {% if termination_z.interface %}- {{ termination_z.interface.device }} {{ termination_z.interface }}{% endif %}
  18. {% else %}
  19. <span class="text-muted">None</span>
  20. {% endif %}
  21. </li>
  22. </ul>
  23. {% endblock %}