This commit is contained in:
Mohamed Nouffer
2022-06-06 21:15:07 +05:30
parent b270c3ba55
commit d543289b1f
6 changed files with 67 additions and 13 deletions

View File

@ -201,8 +201,8 @@ class Location(models.Model):
facility=models.CharField(_('Facility'), max_length=255, blank=True, null=True)
remark=models.CharField(_('Remarks'), max_length=255, blank=True, null=True)
tags=models.CharField(_('Tags'), max_length=512, blank=True, null=True)
event_name = models.CharField(_('Tags'), max_length=512, blank=True, null=True)
event_active = models.BooleanField(_("Is Autologin"),default=True)
event_name = models.CharField(_('Event name'), max_length=512, blank=True, null=True)
event_active = models.BooleanField(_("Is Event active"),default=True)
auto_checkin = models.BooleanField(_("Is Autologin"),default=False)
checkin_radious = models.IntegerField(_("Checkin Radious"), blank=True, null=True)
parammeters=models.CharField(_('Parameters'), max_length=512, blank=True, null=True)