Re: forms / confirmation

2009-05-31 Thread V
I think not using a form in itself is not a problem, it's more a way of organising your code which would let you add all the user interaction in forms. And actually, you could still do it even without a POST method. You have request.GET or request.REQUEST to store the passed variables. To get

forms / confirmation

2009-05-29 Thread eric.frederich
I have some very simple views that act as forms because there is no information to fill out. I get all the information from the url and the request object. For example, I may have a model like: class Subscription(models.Model): user = models.ForeignKey(User) magazine =