Re: How to serve staticfiles with full URL for local development?

2012-05-18 Thread pedesen
I have a similar problem. My STATIC_URL is a full URL like http://static.mysite.com. When I use the development server with runserver, django *always* takes this URL. In the templates I use {{STATIC_URL}}/myimage.jpg, and in development I always see http://static.mysite.com/myimage.jpg in my br

Re: Struggling with formsets

2012-05-18 Thread pedesen
For this case inline-formsets should be the way to go: https://docs.djangoproject.com/en/dev/topics/forms/modelforms/#inline-formsets But I think this will work for a particular person, but not for multiple persons... Am Freitag, 18. Mai 2012 15:27:05 UTC+2 schrieb David: > > Given 2 models: > >