Computational_Mathematics_L.../templates/index.html
2023-12-20 01:22:10 +04:00

37 lines
1.5 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<title>Симплекс метод (6 вариант)</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous">
</head>
<body>
<div class="container mt-5">
<h1>Лабораторная работа № 1 (Вариант 6)</h1>
<h2 class="mt-3">Начальная таблица (в каноническом виде):</h2>
{{ start_table | safe }}
<h2 class="mt-3">Конечная таблица (после преобразований):</h2>
{{ end_table | safe }}
<h2 class="mt-3">Описания столбцов:</h2>
<table class="table table-dark table-striped table-hover">
<thead class="table-success">
<tr>
<th>Название</th>
<th>Значение</th>
</tr>
</thead>
<tbody class="table-group-divider">
{% for item in solution %}
<tr>
<td>{{ item.name }}</td>
<td>{{ item.value }}</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js" integrity="sha384-C6RzsynM9kWDrMNeT87bh95OGNyZPhcTNXj1NW7RuBCsyN/o0jlpcV8Qyq46cDfL" crossorigin="anonymous"></script>
</body>
</html>