Skip to content

Commit

Permalink
Update help_text
Browse files Browse the repository at this point in the history
Had to do this separately from renaming the field to avoid confusing the
Django migration
  • Loading branch information
knatten committed Sep 22, 2024
1 parent 73ba950 commit 1d4732a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion quiz/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ class Question(models.Model):
reservation_message = models.CharField(blank=True, max_length=100,
help_text='Which event the question is reserved for')
socials_text = models.CharField(blank=True, max_length=280,
help_text='What to tweet when question gets posted on Twitter')
help_text='What to post when question gets posted on social media')

def __str__(self):
return str(self.pk)
Expand Down

0 comments on commit 1d4732a

Please sign in to comment.