Keep track of the current production status of all gear. This would look like:
class ProductionStatus(enum):
FORSALE = "For Sale"
PREORDER = "Available for Pre Order"
DISCONTINUED = "No Longer For Sale"
This will help users hoping to purchase gear look through what is most relevant to them. It will require some work from manufacturers/users to keep up to date though.
Keep track of the current production status of all gear. This would look like:
This will help users hoping to purchase gear look through what is most relevant to them. It will require some work from manufacturers/users to keep up to date though.