1
0
mirror of https://github.com/fspc/workstand.git synced 2025-02-23 09:13:23 -05:00

Add visit choices.

This commit is contained in:
Drew Larson 2016-04-10 12:22:25 -06:00
parent d111c0c515
commit 5385437203

View File

@ -41,11 +41,13 @@ class Payment(models.Model):
class Visit(models.Model):
visit_choices = (
('VOLUNTEER', 'volunteer'),
('WORK', 'work on bike'), # fix
('WORKSHOP', 'workshop')
# Visit
# Donation
('FIX', 'fix bike'), # fix
('WORKSHOP', 'workshop'),
('VISIT', 'visit'),
('DONATE', 'donate'),
('STAFF', 'staff'),
)
member = models.ForeignKey(
'registration.Member',
on_delete=models.CASCADE