2018-04-13 14:08:30 +00:00
|
|
|
{% load static %}
|
|
|
|
|
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
|
|
|
|
<!-- Required meta tags -->
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
|
|
|
2019-05-07 10:24:27 +00:00
|
|
|
<!-- Favicon -->
|
|
|
|
<link rel="apple-touch-icon" sizes="57x57" href="{% static 'img/favicon/apple-icon-57x57.png' %}">
|
|
|
|
<link rel="apple-touch-icon" sizes="60x60" href="{% static 'img/favicon/apple-icon-60x60.png' %}">
|
|
|
|
<link rel="apple-touch-icon" sizes="72x72" href="{% static 'img/favicon/apple-icon-72x72.png' %}">
|
|
|
|
<link rel="apple-touch-icon" sizes="76x76" href="{% static 'img/favicon/apple-icon-76x76.png' %}">
|
|
|
|
<link rel="apple-touch-icon" sizes="114x114" href="{% static 'img/favicon/apple-icon-114x114.png' %}">
|
|
|
|
<link rel="apple-touch-icon" sizes="120x120" href="{% static 'img/favicon/apple-icon-120x120.png' %}">
|
|
|
|
<link rel="apple-touch-icon" sizes="144x144" href="{% static 'img/favicon/apple-icon-144x144.png' %}">
|
|
|
|
<link rel="apple-touch-icon" sizes="152x152" href="{% static 'img/favicon/apple-icon-152x152.png' %}">
|
|
|
|
<link rel="apple-touch-icon" sizes="180x180" href="{% static 'img/favicon/apple-icon-180x180.png' %}">
|
|
|
|
<link rel="icon" type="image/png" sizes="192x192" href="{% static 'img/favicon/android-icon-192x192.png' %}">
|
|
|
|
<link rel="icon" type="image/png" sizes="32x32" href="{% static 'img/favicon/favicon-32x32.png' %}">
|
|
|
|
<link rel="icon" type="image/png" sizes="96x96" href="{% static 'img/favicon/favicon-96x96.png' %}">
|
|
|
|
<link rel="icon" type="image/png" sizes="16x16" href="{% static 'img/favicon/favicon-16x16.png' %}">
|
|
|
|
<link rel="manifest" href="{% static 'img/favicon/manifest.json' %}">
|
|
|
|
<meta name="msapplication-TileColor" content="#ffffff">
|
|
|
|
<meta name="msapplication-TileImage" content="{% static 'img/favicon/ms-icon-144x144.png' %}">
|
|
|
|
<meta name="theme-color" content="#ffffff">
|
|
|
|
|
2018-04-24 12:50:56 +00:00
|
|
|
<!-- CSS -->
|
2018-04-26 07:37:23 +00:00
|
|
|
<link rel="stylesheet" href="{% static 'css/bootstrap_3.3.7_css_bootstrap.min.css' %}">
|
2018-05-02 11:49:24 +00:00
|
|
|
<link rel="stylesheet" href="{% static 'css/bootstrap-table.css' %}">
|
2019-04-15 15:41:01 +00:00
|
|
|
<link rel="stylesheet" href="{% static 'css/select2.css' %}">
|
|
|
|
<link rel="stylesheet" href="{% static 'css/select2-bootstrap.css' %}">
|
2018-05-02 11:49:24 +00:00
|
|
|
<link rel="stylesheet" href="{% static 'css/inventree.css' %}">
|
2018-04-13 14:08:30 +00:00
|
|
|
|
2018-04-26 13:05:35 +00:00
|
|
|
{% block css %}
|
|
|
|
{% endblock %}
|
2018-04-23 10:37:36 +00:00
|
|
|
{% block head %}
|
|
|
|
{% endblock %}
|
|
|
|
|
2018-04-13 14:08:30 +00:00
|
|
|
<title>
|
|
|
|
{% block title %}
|
|
|
|
InvenTree
|
|
|
|
{% endblock %}
|
|
|
|
</title>
|
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
2018-04-14 08:22:31 +00:00
|
|
|
|
2018-04-14 05:13:16 +00:00
|
|
|
{% include "navbar.html" %}
|
|
|
|
|
2018-04-28 13:22:12 +00:00
|
|
|
<div class='main body wrapper'>
|
|
|
|
|
2018-05-04 07:51:55 +00:00
|
|
|
<div class='sidenav' id='sidenav'>
|
|
|
|
{% block sidenav %}
|
|
|
|
{% endblock %}
|
|
|
|
</div>
|
2018-04-28 13:22:12 +00:00
|
|
|
|
|
|
|
<div class="container container-fluid inventree-content" id='inventree-content'>
|
2018-05-04 08:53:39 +00:00
|
|
|
{% block pre_content %}
|
|
|
|
{% endblock %}
|
2018-04-13 14:08:30 +00:00
|
|
|
{% block content %}
|
|
|
|
<!-- Each view fills in here.. -->
|
|
|
|
{% endblock %}
|
2018-05-04 08:53:39 +00:00
|
|
|
{% block post_content %}
|
|
|
|
{% endblock %}
|
2018-04-14 08:22:31 +00:00
|
|
|
</div>
|
2018-04-13 14:08:30 +00:00
|
|
|
|
2018-05-04 08:53:39 +00:00
|
|
|
{% include 'modals.html' %}
|
2019-05-04 01:23:30 +00:00
|
|
|
{% include 'about.html' %}
|
2018-04-29 13:29:38 +00:00
|
|
|
{% include 'notification.html' %}
|
2018-04-28 13:22:12 +00:00
|
|
|
</div>
|
|
|
|
|
2018-04-24 14:09:25 +00:00
|
|
|
<!-- Scripts -->
|
|
|
|
<script type="text/javascript" src="{% static 'script/jquery_3.3.1_jquery.min.js' %}"></script>
|
2019-04-17 09:03:03 +00:00
|
|
|
<script type='text/javascript' src="{% static 'script/jquery.form.min.js' %}"></script>
|
2018-05-02 11:49:24 +00:00
|
|
|
|
2019-04-17 09:03:03 +00:00
|
|
|
<script type="text/javascript" src="{% static 'script/bootstrap/bootstrap.min.js' %}"></script>
|
|
|
|
<script type='text/javascript' src="{% static 'script/bootstrap/bootstrap-treeview.js' %}"></script>
|
|
|
|
<script type='text/javascript' src="{% static 'script/bootstrap/bootstrap-table.min.js' %}"></script>
|
|
|
|
<script type='text/javascript' src="{% static 'script/bootstrap/bootstrap-table-en-US.min.js' %}"></script>
|
2018-05-02 12:18:58 +00:00
|
|
|
|
2019-04-17 09:03:03 +00:00
|
|
|
<script type="text/javascript" src="{% static 'script/select2/select2.js' %}"></script>
|
2018-05-10 11:13:36 +00:00
|
|
|
<script type='text/javascript' src="{% static 'script/moment.js' %}"></script>
|
2019-04-17 09:03:03 +00:00
|
|
|
|
2019-05-06 09:21:14 +00:00
|
|
|
<script type='text/javascript' src="{% static 'script/inventree/inventree.js' %}"></script>
|
|
|
|
<script type='text/javascript' src="{% static 'script/inventree/api.js' %}"></script>
|
2019-05-08 12:03:59 +00:00
|
|
|
<script type='text/javascript' src="{% static 'script/inventree/part.js' %}"></script>
|
2019-04-17 09:03:03 +00:00
|
|
|
<script type='text/javascript' src="{% static 'script/inventree/tables.js' %}"></script>
|
|
|
|
<script type='text/javascript' src="{% static 'script/inventree/notification.js' %}"></script>
|
2018-05-08 09:40:29 +00:00
|
|
|
<script type='text/javascript' src="{% static 'script/inventree/modals.js' %}"></script>
|
2019-04-17 09:03:03 +00:00
|
|
|
<script type='text/javascript' src="{% static 'script/inventree/sidenav.js' %}"></script>
|
2018-04-28 02:45:12 +00:00
|
|
|
{% block js_load %}
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
<script type='text/javascript'>
|
|
|
|
$(document).ready(function () {
|
|
|
|
{% block js_ready %}
|
|
|
|
{% endblock %}
|
2019-05-06 09:21:14 +00:00
|
|
|
|
|
|
|
/* Run document-ready scripts.
|
|
|
|
* Ref: static/script/inventree/inventree.js
|
|
|
|
*/
|
|
|
|
inventreeDocReady();
|
|
|
|
|
|
|
|
/* Display any cached alert messages
|
|
|
|
* Ref: static/script/inventree/notification.js
|
|
|
|
*/
|
2018-04-29 13:47:16 +00:00
|
|
|
showCachedAlerts();
|
2018-04-28 02:45:12 +00:00
|
|
|
});
|
|
|
|
</script>
|
2018-04-24 14:09:25 +00:00
|
|
|
|
2018-04-28 02:45:12 +00:00
|
|
|
{% block js %}
|
2018-04-24 14:09:25 +00:00
|
|
|
{% endblock %}
|
|
|
|
|
2018-04-13 14:08:30 +00:00
|
|
|
</body>
|
|
|
|
</html>
|