You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
1.2 KiB
HTML
47 lines
1.2 KiB
HTML
{% load static %}
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Line Operator Dashboard | Container Depot</title>
|
|
<link rel="stylesheet" href="{% static 'styles/tables.css' %}">
|
|
<link rel="stylesheet" href="{% static 'styles/forms.css' %}">
|
|
<link rel="stylesheet" href="{% static 'styles/sidebar.css' %}">
|
|
<link rel="stylesheet" href="{% static 'styles/base.css' %}">
|
|
<link rel="stylesheet" href="{% static 'styles/dashboard-content.css' %}">
|
|
</head>
|
|
|
|
|
|
<body>
|
|
<aside class="sidebar">
|
|
{% include 'client-sidebar.html' %}
|
|
</aside>
|
|
|
|
<main class="content-area">
|
|
<div class="content">
|
|
{% block content %}
|
|
{% endblock content %}
|
|
</div>
|
|
</main>
|
|
|
|
{% block custom_styles %}
|
|
{% endblock custom_styles %}
|
|
|
|
{% block extra_js %}
|
|
<script>
|
|
const validateContainerUrl = "{% url 'validate_container' 'placeholder' %}".replace('placeholder/', '');
|
|
</script>
|
|
<script src="{% static 'js/container_validation.js' %}"></script>
|
|
|
|
{% endblock extra_js %}
|
|
|
|
{% block crud_js %}
|
|
{% endblock crud_js %}
|
|
|
|
</body>
|
|
|
|
|
|
|
|
</html>
|