InvenTree/InvenTree/templates/base.html

61 lines
1.2 KiB
HTML
Raw Normal View History

{% 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">
<!-- CSS -->
<link rel="stylesheet" href="{% static 'css/bootstrap_3.3.7_css_bootstrap.min.css' %}">
<link rel="stylesheet" href="{% static 'css/inventree.css' %}">
<link rel="stylesheet" href="{% static 'css/select2.css' %}">
{% block css %}
{% endblock %}
{% block head %}
{% endblock %}
<title>
{% block title %}
InvenTree
{% endblock %}
</title>
</head>
<body>
{% include "navbar.html" %}
2018-04-17 15:13:42 +00:00
<div class="container container-fluid inventree-content">
{% block content %}
<!-- Each view fills in here.. -->
{% endblock %}
</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>
<script type="text/javascript" src="{% static 'script/bootstrap.min.js' %}"></script>
<script type="text/javascript" src="{% static 'script/select2/select2.js' %}"></script>
{% block js_load %}
{% endblock %}
<script type='text/javascript'>
$(document).ready(function () {
{% block js_ready %}
{% endblock %}
2018-04-24 14:09:25 +00:00
});
</script>
2018-04-24 14:09:25 +00:00
{% block js %}
2018-04-24 14:09:25 +00:00
{% endblock %}
</body>
</html>