diff --git a/lobby/templates/lobby/player_screen.html b/lobby/templates/lobby/player_screen.html index 8f6d9a6..79f31f5 100644 --- a/lobby/templates/lobby/player_screen.html +++ b/lobby/templates/lobby/player_screen.html @@ -5,6 +5,8 @@ #answerOptions button { border: 1px solid #999; padding: 6px 10px; border-radius: 8px; background: #f4f4f4; cursor: pointer; } #answerOptions button.active { border-color: #1652f0; background: #dfe9ff; } #guessStatus { margin: 6px 0 10px; font-size: 0.95rem; color: #333; } +#lieStatus { margin: 6px 0 10px; font-size: 0.95rem; color: #333; } +#lieStatus.locked { color: #0a5f2d; font-weight: 600; } #guessStatus.locked { color: #0a5f2d; font-weight: 600; } @@ -17,7 +19,8 @@ - + +

Skriv din løgn.

Vælg et svar.

@@ -27,20 +30,27 @@ diff --git a/lobby/tests.py b/lobby/tests.py index 283c401..c55d186 100644 --- a/lobby/tests.py +++ b/lobby/tests.py @@ -785,6 +785,10 @@ class UiScreenTests(TestCase): self.assertContains(response, "availableAnswers") self.assertContains(response, "guessStorageKey") self.assertContains(response, "persistGuessState") + self.assertContains(response, "id=\"lieSubmitBtn\"") + self.assertContains(response, "id=\"lieStatus\"") + self.assertContains(response, "persistLieState") + self.assertContains(response, "updateLieSubmitState") self.assertContains(response, "invalid_client_guess")