request_access.html 583 B

123456789101112131415161718192021
  1. {% extends "superset/basic.html" %}
  2. {% block title %}{{ _("No Access!") }}{% endblock %}
  3. {% block body %}
  4. <div class="container">
  5. {% include "superset/flash_wrapper.html" %}
  6. <h4>
  7. {{ _("You do not have permissions to access the datasource(s): %(name)s.",
  8. name=datasource_names)
  9. }}
  10. </h4>
  11. <div>
  12. <button onclick="window.location += '&action=go';">
  13. {{ _("Request Permissions") }}
  14. </button>
  15. <button onclick="window.location.href = '/chart/list/';">
  16. {{ _("Cancel") }}
  17. </button>
  18. </div>
  19. </div>
  20. {% endblock %}