DAS_2023_1/antonov_dmitry_lab_5/templates/result.html

20 lines
509 B
HTML
Raw Normal View History

2023-12-04 21:25:59 +04:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
2023-12-05 13:01:36 +04:00
<title>Результат</title>
2023-12-04 21:25:59 +04:00
</head>
<body>
<h1>Результат</h1>
2023-12-05 13:01:36 +04:00
<p>Матрица A:</p>
2023-12-04 21:25:59 +04:00
<pre>{{ matrix_a }}</pre>
2023-12-05 13:01:36 +04:00
<p>Матрица B:</p>
2023-12-04 21:25:59 +04:00
<pre>{{ matrix_b }}</pre>
2023-12-05 13:01:36 +04:00
<p>Результат:</p>
2023-12-04 21:25:59 +04:00
<pre>{{ result }}</pre>
<a href="/">Назад</a>
</body>
</html>