This repository has been archived on 2025-10-24. You can view files and clone it, but cannot push or open issues or pull requests.
Files
RIS/App/Waybill/templates/waybill.html

49 lines
2.1 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{% import 'card.html' as card %}
<!DOCTYPE html>
<html lang="en" data-bs-theme="dark">
<head>
<meta charset="UTF-8">
<title>Оформление накладной</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet">
<link href="static/css/waybill.css" type="text/css" rel="stylesheet">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js"></script>
</head>
<body>
<div class="container mt-4">
<div class="row">
<!-- Секция заготовок -->
<div class="col-md-8">
<h4>Список заготовок</h4>
<div class="row row-cols-1 row-cols-sm-2 row-cols-md-3 g-3">
{% for item in items %}
<div class="col">
{{ card.render_item(item, show_form = True, show_amount = False) }}
</div>
{% endfor %}
</div>
</div>
<!-- Секция накладной -->
<div class="col-md-4">
<h4>Накладная</h4>
{% if waybill %}
{% for item in waybill %}
{{ card.render_item(item, show_form = False, show_amount = True) }}
{% endfor %}
<div class="d-grid gap-2 mt-3">
<a href="{{url_for('waybill_bp.save_order')}}"><button class="btn btn-primary">Оформить накладную</button></a>
<a href="{{url_for('index')}}"><button class="btn btn-secondary">На главную</button></a>
</div>
{% else %}
<span>Ваша накладная пуста</span>
<div class="d-grid gap-2 mt-3">
<a href="{{url_for('index')}}"><button class="btn btn-secondary">На главную</button></a>
</div>
{% endif %}
</div>
</div>
</div>
</body>
</html>