Django app all about plants.
pipenv shell python3 manage.py shell python3 manage.py runserver
- As a User, when I click the View All My Plants link, I want to see a page listing all of my plants.
- AAU, when I click on a plant in the plants list, I want to see a page that displays all the details for that plant.
/plants Plants index to view all plants /plants/:id show plants view one plant
- Start by adding the URL to urls.py
- Create the view associated with that URL
- Make the HTML template for that view
- Add some functionality(UI) to quickly get to that template