Talented Django Developer required for short-term project

2009-03-30 Thread ldm999
More info here: http://djangogigs.com/gigs/588/ --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group,

What's the most scalable Django deployment out there currently?

2009-03-24 Thread ldm999
Is there any reason why Django couldn't be used to create a website that gets Facebook-like traffic? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-us

Vanity urls: Eg mysite.com//....

2009-03-15 Thread ldm999
I'm using Django Auth and would like to include username in my urls. So, eg, I might have urls like the following: - mysite.com/tom/books/moby-dick - mysite.com/dick/books/moby-dick - mysite.com/harry/books/catch-22 To further complicate things, I'd like to support groups too. So that first url

Newbie: Trying to apply JS code to Django forms code

2009-03-13 Thread ldm999
My Django form looks like this: --- Type: {{ form.syslist }} Name: {{ form.name }} --- My JS copy droplist value to text field code looks like this: --- books movies restaurants --- I'm strugglin

Best way to trap IntegrityError in Django form?

2009-03-08 Thread ldm999
I have a form tied to a List model where User and Name are unique_together. What's the best way to trap the IntegrityError if someone tries to create a new List with a User/Name combo that already exists? I know I could allow Django forms to do it if I include User in the form, but obviously I n

Dynamically default second form field from droplist value of another field in the same form

2009-03-08 Thread ldm999
I'd like to have a Django form with 2 fields: List Type droplist (eg Books, Movies) and List Name text field. Ie: List Type: [select...] List Name [] When my user selects a List Type I would like the List Name to automatically populate with the selected List Type. Similar to the

Any reason to not extend User model using model inheritance (vs UserProfile approach)?

2009-01-13 Thread ldm999
I need some extra fields on User and my first assumption was I could subclass user (yes, I am a newbie). Then I read the docs and they talk about using UserProfile. This article (http://scottbarnham.com/blog/ 2008/08/21/extending-the-django-user-model-with-inheritance/ #comment-621) seems to say t

Re: Looking for Django tutorial that illustrates master/detail data models

2008-12-30 Thread ldm999
rrect item based on its parent. I'll take another detailed look at the official tutorial to see if this is covered. On Dec 30, 6:02 pm, Daniel Roseman wrote: > On Dec 30, 8:22 pm, ldm999 wrote: > > > Eg: > > Lists (books, movies, restaurants) and multiple items per list. &g

Looking for Django tutorial that illustrates master/detail data models

2008-12-30 Thread ldm999
Eg: Lists (books, movies, restaurants) and multiple items per list. Web forms would allow user to: - Add/change/delete lists - Add/change/delete list items TIA --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Djang