mirror of
https://github.com/lemeow125/Borrowing-TrackerBackend.git
synced 2025-02-23 06:28:19 +08:00
11 lines
230 B
Python
11 lines
230 B
Python
EQUIPMENT_CATEGORY_CHOICES = (
|
|
('Glassware', 'Glassware'),
|
|
('Miscellaneous', 'Miscellaneous')
|
|
)
|
|
|
|
|
|
EQUIPMENT_INSTANCE_STATUS_CHOICES = (
|
|
('Working', 'Working'),
|
|
('Broken', 'Broken'),
|
|
('Borrowed', 'Borrowed'),
|
|
)
|