1. Update computer model to include:
[python] os_choice = ( ('Windows 10', 'Windows 10'), ('Windows 8', 'Windows 8'), ('Linux', 'Linux'), ) operating_system = models.CharField(max_length=30, blank=True, null=True, choices=os_choice) [/python]
2. Add operating_system as a field in computerForm