v1_token_warning.html 577 B

1234567891011121314151617
  1. {% load i18n %}
  2. <div id="v1-deprecation-warning" class="alert alert-warning bg-warning-subtle mx-3 my-2" role="alert" style="display: none;">
  3. <div class="d-flex">
  4. <div>
  5. <i class="mdi mdi-alert p-2"></i>
  6. </div>
  7. <div>
  8. <h4 class="alert-title">{% trans "v1 API Tokens Are Deprecated" %}</h4>
  9. <div class="text-secondary">
  10. {% blocktrans trimmed %}
  11. v1 API tokens are deprecated and will be removed in a future NetBox release.
  12. Please use v2 tokens instead.
  13. {% endblocktrans %}
  14. </div>
  15. </div>
  16. </div>
  17. </div>