- Review Model db.relationships are incorrect back_populates="reviews"
- Review Model Foreign Key for user_id is incorrect db.ForeignKey("users.id")
- New_business.html is missing its methods to send information.
- Seed Data is too large for Chuck E Cheese Description
- Submit incorrect data to test form validation and show how to debug with forms
{% if form.errors['name'] %}
{{ form.errors['name'][0]}}
{% endif %}
{% if form.errors['category'] %}
{{ form.errors['category'][0]}}
{% endif %}
{% if form.errors['desc'] %}
{{ form.errors['desc'][0]}}
{% endif %}