Re: Django code of conduct - last line

2015-05-08 Thread Graham Oliver
015 01:43 PM, Graham Oliver wrote: > > Thank you, so how about > > > > 'Don’t forget that it is human to err and blaming each other doesn’t get > > us anywhere. > > Instead, focus on helping to resolve issues and learning from mistakes' > > I think

Re: Django code of conduct - last line

2015-05-08 Thread Graham Oliver
t; -- > let's build quiet armies friends, let's march on their glass > towers...let's build fallen cathedrals and make impractical plans > > - GYBE > > On 8 May 2015 at 12:51, Graham Oliver <greenba...@gmail.com > > wrote: > >> Hello all >>

Django code of conduct - last line

2015-05-07 Thread Graham Oliver
Hello all Just reading the code of conduct https://www.djangoproject.com/conduct/ The last line goes like this 'Don’t forget that it is human to err and blaming each other doesn’t get us anywhere, rather offer to help resolving issues and to help learn from mistakes.' I don't really understand

Checking for foreign key in clean method - Django 1.77 vs 1.8

2015-04-16 Thread Graham Oliver
Hi guys I have some code in a clean() method that works ok on Django 1.77 but stops working in 1.8 The scenario class Span(models.Model): happening = models.ForeignKey('Happening', blank = True, null = True) soul_class = models.ForeignKey('SoulClass', blank = True, null = True)