email as username best practice in 1.4

2012-08-09 Thread Gordon Wrigley
What is the recommended best approach for using emails as usernames in Django 1.4? I've looked in the FAQ and couldn't find anything, I see there is this issue https://code.djangoproject.com/ticket/3011 which is likely to be addressed in 1.5 but I can't wait for 1.5. Searching here, stackoverfl

Re: Choices in DecimalField - django 1.8.

2017-09-19 Thread Gordon Wrigley
In case anyone else ends up here, I've found that it's very sensitive to how you specify the Decimal, so in my example Decimal('20.00') worked but Decimal('20') and Decimal(20) did not. On Monday, April 20, 2015 at 6:44:30 PM UTC+1, eltonplima wrote: > > In the model below, using the Django admi