From e6b85f3944a292f17c4a58228f210fad3b92f770 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=9A=D0=BE=D0=BD=D1=81=D1=82=D0=B0=D0=BD=D1=82=D0=B8?= =?UTF-8?q?=D0=BD=20=D0=9B=D0=B5=D0=B1=D0=B5=D0=B4=D0=B8=D0=BD=D1=81=D0=BA?= =?UTF-8?q?=D0=B8=D0=B9?= Date: Thu, 30 Apr 2026 14:20:45 +0500 Subject: [PATCH] bugfix --- flask_app/app/templates/tests/list.html | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/flask_app/app/templates/tests/list.html b/flask_app/app/templates/tests/list.html index de7407a..14711f2 100644 --- a/flask_app/app/templates/tests/list.html +++ b/flask_app/app/templates/tests/list.html @@ -25,7 +25,7 @@
- +
{% endfor %} @@ -49,7 +49,7 @@
- +
{% endfor %} @@ -199,8 +199,7 @@ const testId = btn.dataset.testId; if (!testId) return; btn.disabled = true; - const oldText = btn.textContent; - btn.textContent = '…'; + btn.textContent = 'Продолжить…'; try { const r = await fetch(`/api/tests/${testId}/attempts/start`, { method: 'POST',