You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
598 B

  1. {% extends "base.html" %}
  2. {% load static %}
  3. {% load render_bundle from webpack_loader %}
  4. {% block header %}
  5. <link rel="stylesheet" href="{% static 'assets/css/annotation.css' %}">
  6. {% endblock %}
  7. {% block navigation %}
  8. {% if user.is_superuser and 'project_id' in view.kwargs %}
  9. <a class="navbar-item" href="{% url 'dataset' view.kwargs.project_id %}">
  10. <span class="icon">
  11. <i class="fas fa-edit"></i>
  12. </span>
  13. <b>Edit Data</b>
  14. </a>
  15. {% endif %}
  16. {% endblock %}
  17. {% block content %}
  18. <div id="mail-app"></div>
  19. {% endblock %}
  20. {% block footer %}
  21. {% render_bundle bundle_name 'js' %}
  22. {% endblock %}