Re: Instant Django

2007-07-30 Thread djx
That's a good tutorial thanks for that. I think the way you described the workings has helped me a lot in "getting into" django. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to

Re: Setup django

2006-06-22 Thread djx
If the traffic is also small, maybe can use the development server? See http://www.djangoproject.com/documentation/tutorial1/ --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this

Re: Having many of one application.

2006-06-21 Thread djx
GenericRelations looks like a good fit for logging/auditing. eg. lion.log.create(action="create", action_by="userA") lion.log.create(action="modify", action_by="userB", field="weight", value="100") lion.log.create(action="modify", action_by="userB", field="weight", value="120")

Re: Having many of one application.

2006-06-19 Thread djx
James Bennett wrote: > On 6/19/06, kevin evans <[EMAIL PROTECTED]> wrote: > > I guess I was looking for a way to still use the great built-in admin.i.e. > > be able to assign users to sites within the django generated admin. > > Right now that's not really possible because the permissions system

reuse of contrib.admin code for normal users

2006-06-17 Thread djx
Hi, wishing to confirm if anyone has managed to do something similar. Using terms from the tutorial at www.djangoproject.com, i wish to - allow users (possibly upto 70 users) to create their own Polls/choices - but not (at least not easily) alter the Polls/choices that other users have created