forked from CGM_Public/pretix_original
[A11y] move timezone info inline instead of tooltip (#5130)
* [A11y] move timezone info inline instead of tooltip * Update text as suggested from code review Co-authored-by: Raphael Michel <michel@rami.io> * Rebase migration * Delete src/pretix/base/migrations/0280_event_is_remote.py --------- Co-authored-by: Raphael Michel <michel@rami.io>
This commit is contained in:
committed by
GitHub
parent
073c20e975
commit
7756b6745c
@@ -616,6 +616,11 @@ class Event(EventMixin, LoggedModel):
|
||||
max_length=200,
|
||||
verbose_name=_("Location"),
|
||||
)
|
||||
is_remote = models.BooleanField(
|
||||
default=False,
|
||||
verbose_name=_("This event is remote or partially remote."),
|
||||
help_text=_("This will be used to let users know if the event is in a different timezone and let’s us calculate users’ local times."),
|
||||
)
|
||||
geo_lat = models.FloatField(
|
||||
verbose_name=_("Latitude"),
|
||||
null=True, blank=True,
|
||||
|
||||
Reference in New Issue
Block a user