Re: Django and Heroku Static Image Files Disappearing

2013-01-10 Thread Filip Wasilewski
Hi, On Thursday, January 10, 2013 10:14:19 PM UTC+1, That guy wrote: > > Hi there :) > > On heroku, do static images expire after some point and automatically get > deleted? > Heroku dyno file system is not persistent between restarts and you have to store your media files outside of Heroku -

Re: Converting Django app into a Desktop app

2012-12-20 Thread Filip Wasilewski
Hi, On Tuesday, December 18, 2012 5:06:19 PM UTC+1, Loai Ghoraba wrote: > > Hi > > I am very comfortable with Django, and I was wondering about whether there > is some way to convert a Django web app into a Desktop app (may be not > 100%), so that I can distribute it to users. May be wrapping

Re: Query API: get all users without a group

2008-12-02 Thread Filip Wasilewski
On 2 Gru, 16:45, Thomas Guettler <[EMAIL PROTECTED]> wrote: > Hi, > > I want to get all objects where the corresponding many-to-many field is > empty. > > Example:  get all users without a group [...] The preferred solution is using the `isnull` filter: User.objects.filter(groups__isnull=True)

Re: Simultaneous edits

2008-02-01 Thread Filip Wasilewski
Hi Michael, On Jan 30, 6:25 pm, Michael Hipp <[EMAIL PROTECTED]> wrote: > James Bennett wrote: > > On Jan 30, 2008 9:18 AM, Michael Hipp <[EMAIL PROTECTED]> wrote: > >> Does Django have any built-in way to handle or prevent simultaneous, > >> incompatible edits to a database record? > > > No,