base.html 987 B

123456789101112131415161718192021222324252627282930313233
  1. {% load static %} {% load helpers %}
  2. <!DOCTYPE html>
  3. <html lang="en">
  4. <head>
  5. <title>{% block title %}Home{% endblock %} - NetBox</title>
  6. <link
  7. rel="stylesheet"
  8. href="{% static 'netbox.css'%}"
  9. onerror="window.location='{% url 'media_failure' %}?filename=netbox.css'"
  10. />
  11. <link rel="icon" type="image/png" href="{% static 'netbox.ico' %}" />
  12. <meta charset="UTF-8" />
  13. <meta
  14. name="viewport"
  15. content="initial-scale=1, maximum-scale=1, user-scalable=no, width=device-width"
  16. />
  17. </head>
  18. <body>
  19. {% block layout %}{% endblock %}
  20. <script
  21. src="{% static 'netbox.js' %}"
  22. onerror="window.location='{% url 'media_failure' %}?filename=netbox.js'">
  23. </script>
  24. <script type="text/javascript">
  25. var netbox_api_path = "/{{ settings.BASE_PATH }}api/";
  26. var netbox_csrf_token = "{{ csrf_token }}";
  27. </script>
  28. {% block javascript %}{% endblock %}
  29. {% include './messages.html' %}
  30. </body>
  31. </html>