provider.html 454 B

1234567891011121314
  1. {% extends 'generic/object.html' %}
  2. {% load static %}
  3. {% load helpers %}
  4. {% load plugins %}
  5. {% load render_table from django_tables2 %}
  6. {% load i18n %}
  7. {% block extra_controls %}
  8. {% if perms.circuits.add_circuit %}
  9. <a href="{% url 'circuits:circuit_add' %}?provider={{ object.pk }}" class="btn btn-primary">
  10. <i class="mdi mdi-plus-thick" aria-hidden="true"></i> {% trans "Add circuit" %}
  11. </a>
  12. {% endif %}
  13. {% endblock extra_controls %}