diff --git a/lobby/templates/lobby/host_screen.html b/lobby/templates/lobby/host_screen.html index d898071..a7330ed 100644 --- a/lobby/templates/lobby/host_screen.html +++ b/lobby/templates/lobby/host_screen.html @@ -9,13 +9,14 @@

Kræver mindst 3 spillere i lobbyen.

Spillere i session: ukendt

- + - - - - - + + + + + +

Angiv sessionkode for at aktivere host-actions.

Klar.
diff --git a/lobby/tests.py b/lobby/tests.py index 26e12c9..e8bb521 100644 --- a/lobby/tests.py +++ b/lobby/tests.py @@ -775,6 +775,11 @@ class UiScreenTests(TestCase): self.assertContains(response, "Host panel") self.assertContains(response, "saveHostContext") self.assertContains(response, "restoreHostContext") + self.assertContains(response, "id=\"showQuestionBtn\"") + self.assertContains(response, "id=\"mixAnswersBtn\"") + self.assertContains(response, "id=\"hostActionHint\"") + self.assertContains(response, "updateHostActionState") + self.assertContains(response, "Angiv sessionkode for at aktivere host-actions.") def test_player_screen_is_public(self): response = self.client.get(reverse("lobby:player_screen"))