Compare commits

..

No commits in common. "ed7b4b1c110530ff689fd3cc690e37be766c6124" and "7277fc7b5cff3f77e007a18b2502f3490d2607d3" have entirely different histories.

4 changed files with 2 additions and 4 deletions

1
.gitignore vendored
View File

@ -1,3 +1,2 @@
*.sqlite3
*.idea
/stories/stories/settings.py

View File

@ -1,3 +1,2 @@
Django==3.1.7
django-formtools==2.2
mysqlclient==2.0.3

View File

@ -27,7 +27,7 @@ class StoryRound(models.Model):
def next_round_ready(self) -> bool:
for story in self.story_set.all():
if not story.parts.get(turn_number=self.current_turn).finished:
if not story.storypart_set.get(turn_number=self.current_turn).finished:
return False
return True