28 lines
561 B
HTML
28 lines
561 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width">
|
|
<link rel="stylesheet" href="{{ url_for('static',filename='css/bootstrap.min.css')}}">
|
|
<link rel="stylesheet" href="{{ url_for('static',filename='css/index.css')}}">
|
|
|
|
<title class="no-print">Инвентаризация</title>
|
|
</head>
|
|
|
|
|
|
{% include 'head.html' %}
|
|
|
|
<div class="row no-print">
|
|
{% include 'navbar.html' %}
|
|
</div>
|
|
|
|
<body>
|
|
{% block content %} {% endblock %}
|
|
|
|
|
|
|
|
{% include 'js.html' %}
|
|
</body>
|
|
|
|
</html> |