Browse Source

Move to class props.

feature/python-error-tracking
Drew Larson 7 years ago
parent
commit
26c009a537
  1. 19
      bikeshop_project/core/models.py

19
bikeshop_project/core/models.py

@ -47,13 +47,20 @@ class Payment(models.Model):
class Visit(models.Model):
VOLUNTEER = 'VOLUNTEER'
FIX = 'FIX'
WORKSHOP = 'WORKSHOP'
VISIT = 'VISIT'
DONATE = 'DONATE'
STAFF = 'STAFF'
visit_choices = (
('VOLUNTEER', 'volunteer'),
('FIX', 'fix bike'), # fix
('WORKSHOP', 'workshop'),
('VISIT', 'visit'),
('DONATE', 'donate'),
('STAFF', 'staff'),
(VOLUNTEER, 'volunteer'),
(FIX, 'fix bike'), # fix
(WORKSHOP, 'workshop'),
(VISIT, 'visit'),
(DONATE, 'donate'),
(STAFF, 'staff'),
)
member = models.ForeignKey(

Loading…
Cancel
Save