58 lines
No EOL
2.3 KiB
HTML
58 lines
No EOL
2.3 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, shrink-to-fit=no">
|
|
<title>{{ app_title }} - {{ page_title }}</title>
|
|
|
|
<link rel="stylesheet" href="{% static "dist/bootstrap/css/bootstrap.min.css" %}">
|
|
<link rel="stylesheet" href="{% static "dist/fontawesome/css/all.css" %}">
|
|
<link rel="stylesheet" href="{% static "dist/adminlte/css/adminlte.css" %}">
|
|
|
|
<link rel="stylesheet" href="https://typekitproxy.kumi.systems/jqw2sul.css">
|
|
|
|
<link rel="stylesheet" href="{% static "css/brand.css" %}">
|
|
<link rel="stylesheet" href="{% static "css/layout.css" %}">
|
|
<link rel="stylesheet" href="{% static "css/styles.css" %}">
|
|
<link rel="stylesheet" href="{% static "css/modals.css" %}">
|
|
<link rel="stylesheet" href="{% static "css/reservation.css" %}">
|
|
<link rel="stylesheet" href="{% static "css/daterangepicker.css" %}">
|
|
</head>
|
|
|
|
<body>
|
|
<div class="wrapper">
|
|
{% include "manager/navbar.html" %}
|
|
{% include "manager/sidebar.html" %}
|
|
|
|
<div class="content-wrapper">
|
|
<section class="content-header">
|
|
<div class="container-fluid">
|
|
<div class="row mb-2">
|
|
<div class="col-sm-6">
|
|
<h1>{{ page_title }}</h1>
|
|
</div>
|
|
<div class="col-sm-6">
|
|
<ol class="breadcrumb float-sm-right">
|
|
<!-- TODO: Template Tag for crumbs -->
|
|
<li class="breadcrumb-item"><a href="#">Home</a></li>
|
|
<li class="breadcrumb-item active">{{ page_title }}</li>
|
|
</ol>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
{% block content %}
|
|
{% endblock %}
|
|
</div>
|
|
|
|
{% include "manager/footer.html" %}
|
|
</div>
|
|
<script src="{% static "dist/jquery/jquery.min.js" %}"></script>
|
|
<script src="{% static "dist/bootstrap/js/bootstrap.min.js" %}"></script>
|
|
<script src="{% static "dist/adminlte/js/adminlte.min.js" %}"></script>
|
|
<script src="{% static "dist/easepick/index.umd.min.js" %}"></script>
|
|
</body>
|
|
|
|
</html> |