Skip to content

Commit

Permalink
Refactor Booking fields without translations
Browse files Browse the repository at this point in the history
  • Loading branch information
dkwncho committed Dec 11, 2024
1 parent e765e92 commit d7f06be
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions backend/ohq/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -455,8 +455,8 @@ class Booking(models.Model):

occurrence = models.ForeignKey(Occurrence, on_delete=models.CASCADE)
user = models.ForeignKey(User, on_delete=models.CASCADE, blank=True, null=True)
start = models.DateTimeField(_("start"), db_index=True)
end = models.DateTimeField(_("end"), db_index=True)
start = models.DateTimeField("start", db_index=True)
end = models.DateTimeField("end", db_index=True)

class Meta:
verbose_name = _("booking")
Expand Down

0 comments on commit d7f06be

Please sign in to comment.