Re: Using Natural Keys With dumpdata / loaddata

2014-01-23 Thread Mike Dewhirst
On 24/01/2014 8:03am, Alex Thomas wrote: I have already created a stackoverflow question on this and have only received one (*incorrect*) response. For the sake of time I am just linking that question which has all the details. http://stackoverflow.com/questions/21151544/django-loaddata-with-

Re: Python / Django Web Applications Developer - Michigan $90-$100/hr

2014-01-23 Thread Brett Parker
On 24 Jan 09:28, Russell Keith-Magee wrote: > On Fri, Jan 24, 2014 at 9:12 AM, Brett Parker > wrote: > > > > > (also, this is not, as far as I'm aware, a jobs list.) > > > > It is - as long as the jobs are relevant. I sit happily corrected :) > It's not, however, a spam list for recruiters. If

Re: Python / Django Web Applications Developer - Michigan $90-$100/hr

2014-01-23 Thread Russell Keith-Magee
On Fri, Jan 24, 2014 at 9:12 AM, Brett Parker wrote: > > (also, this is not, as far as I'm aware, a jobs list.) > It is - as long as the jobs are relevant. It's not, however, a spam list for recruiters. If a recruiter starts posting non-Django jobs, or starts posting jobs without providing detai

Re: Python / Django Web Applications Developer - Michigan $90-$100/hr

2014-01-23 Thread Brett Parker
On 23 Jan 11:41, Leigh Haugen wrote: > Great opportunity on a Cloud Development team for somebody who is willing to > take a temporary job here in Michigan. > > Python / Django Web Applications Developer, Michigan 6+mth contract, > $90-$100/hr. > > REQUIREMENTS > > Must have strong recent experie

Using Natural Keys With dumpdata / loaddata

2014-01-23 Thread Alex Thomas
I have already created a stackoverflow question on this and have only received one (*incorrect*) response. For the sake of time I am just linking that question which has all the details. http://stackoverflow.com/questions/21151544/django-loaddata-with-natural-keys-not-querying-correct-forign-ke

Python / Django Web Applications Developer - Michigan $90-$100/hr

2014-01-23 Thread Leigh Haugen
Great opportunity on a Cloud Development team for somebody who is willing to take a temporary job here in Michigan. Python / Django Web Applications Developer, Michigan 6+mth contract, $90-$100/hr. No phone calls. Please email resumes to: le...@kdmmcorp.com RE

Re: Hi All, I am looking for a Python / Django Developer to join my digital agency client in central London! Immediate interview - Permanent position - The Digital Recruitment Firm

2014-01-23 Thread Cal Leeming [Simplicity Media Ltd]
Gareth, You might get a better response if you put more details about the position you are offering. Considering the phrase "digital agency" is about as over-used as the word cloud, this email is little more than useless spam in it's current format. Tell people what you have to offer, and why th

Re: Hi All, I am looking for a Python / Django Developer to join my digital agency client in central London! Immediate interview - Permanent position - The Digital Recruitment Firm

2014-01-23 Thread Thiago Moreira de Souza
Good morning, my name is Thiago Arrais, I'm from Brazil and I have 29 years old, and I'm student Computer Sciense in Rio de Janeiro. I receive your e-mail to find one developer Python and Django. I want to make part of your team, you don't pay for to me. I want to make one thing, because, can you

Re: Exiting from a management command with a given exit status

2014-01-23 Thread Erik Cederstrand
Den 23/01/2014 kl. 15.06 skrev Johannes Schneider : > Hi List, > see the question in the subject. I want to return from a management command > with a given exit code. How can this be done? class Command(BaseCommand): def handle(self, *args, **options): try: # Something

Exiting from a management command with a given exit status

2014-01-23 Thread Johannes Schneider
Hi List, see the question in the subject. I want to return from a management command with a given exit code. How can this be done? bg, Johannes -- Johannes Schneider Webentwicklung johannes.schnei...@galileo-press.de Tel.: +49.228.42150.xxx Galileo Press GmbH Rheinwerkallee 4 - 53227 Bonn - G

Re: Expected Behavior with Proxy Models

2014-01-23 Thread Viktor Nagy
Hi, the problem was with defining the managers on the Proxy model. As more recent docs say, managers should be defined separately: https://docs.djangoproject.com/en/dev/topics/db/models/#proxy-model-managers this is already fixed in zinnia 0.14. On Wednesday, December 18, 2013 7:30:53 PM UTC+1

Hi All, I am looking for a Python / Django Developer to join my digital agency client in central London! Immediate interview - Permanent position - The Digital Recruitment Firm

2014-01-23 Thread Gareth Hill
Email: i...@thedigitalrecruitment-firm.co.uk -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscr...@googlegroups.com. To post to this group, se

Re: Best way to validate a Field at Model level

2014-01-23 Thread Mike Dewhirst
On 23/01/2014 10:23pm, parnigot wrote: Thanks Mike, Il giorno 23/gen/2014, alle ore 09:16, Mike Dewhirst mailto:mi...@dewhirst.com.au>> ha scritto: On 23/01/2014 7:03pm, parnigot wrote: Hi, In my models I’ve some FloatFields that must be > 0. I’m wondering what is the best way to check, at t

Re: Best way to validate a Field at Model level

2014-01-23 Thread parnigot
Thanks Mike, Il giorno 23/gen/2014, alle ore 09:16, Mike Dewhirst ha scritto: > On 23/01/2014 7:03pm, parnigot wrote: >> Hi, >> >> In my models I’ve some FloatFields that must be > 0. I’m wondering what >> is the best way to check, at the model level (not form), that the values >> for these Fi

Re: Best way to validate a Field at Model level

2014-01-23 Thread Mike Dewhirst
On 23/01/2014 7:03pm, parnigot wrote: Hi, In my models I’ve some FloatFields that must be > 0. I’m wondering what is the best way to check, at the model level (not form), that the values for these Fields are greater than 0? Browsing the documentation I’ve found the following three methods: *

Best way to validate a Field at Model level

2014-01-23 Thread parnigot
Hi, In my models I've some FloatFields that must be > 0. I'm wondering what is the best way to check, at the model level (not form), that the values for these Fields are greater than 0? Browsing the documentation I've found the following three methods: Add the MinValueValidator to each field.