Render multiple Form instances
- by vorpyg
I have a simple application where users are supposed to bet on outcome of a match. A match consists of two teams, a result and a stake. Matches with teams are created in the Django admin, and participants are to fill in result and stake.
The form must be generated dynamically, based on the matches in the database.
My idea is to have one (Django)…