Teilnehmer_Koordinaten-einzeichnen

This commit is contained in:
ben8
2025-11-01 17:09:42 +01:00
parent 57d325df17
commit ee823629b9
4 changed files with 52 additions and 1 deletions

View File

@@ -50,6 +50,7 @@ class QuizGameParticipant(models.Model):
avatar = models.CharField(max_length=200, blank=True, default="")
last_heartbeat = models.DateTimeField(auto_now_add=True)
last_answer = models.IntegerField(null=True, blank=True)
coordinate_answer = models.CharField(null=True, blank=True,max_length=256)
last_answer_correct = models.BooleanField(null=True, blank=True)
def save(self, *args, **kwargs):