Re: django generic views w multiple models

2009-11-09 Thread Ross
Ok I think I've honed my problem down a bit further and more concisely: So I'm trying to create an Info object that is attached to a League object, but I can't do this through the urlconf the way I have it now because create_object() does not take an object id as an argument. Somehow, I need to g

django generic views w multiple models

2009-11-08 Thread Ross
'm new to Django and programming in general. I'm trying to make a simple site that allows players of a sport sign up for leagues that have been created by the admin. In my models.py, I created two models: `from django.db import models from django.forms import ModelForm class League(models.Model):