Skip to content

Latest commit

 

History

History
13 lines (13 loc) · 731 Bytes

File metadata and controls

13 lines (13 loc) · 731 Bytes
  1. Setup a virtual environment.
  2. Fork the repository and Clone it.
  3. Install the packages from the requirements file.
  4. Create a form for creating Restaurant objects.
    • Your form should be in a forms.py file.
    • Your form should be called RestaurantForm.
    • Your form should include all of the fields.
  5. Complete the restaurant_create view so that it can be used to allow users to create Restaurant objects.
  6. After successfully creating an object the user should be redirected to another page.
  7. Complete the HTML file provided, so that the user input can be taken and handled properly.
  8. The URL has been written for you so you don't need to create one.
  9. Pass the tests.
  10. Push your code.