Re: Introduction to Pulpo-Forms

2015-08-02 Thread jogaserbia
Nice one Luciano, thanks for sharing! Ivan On Friday, July 31, 2015 at 5:25:35 PM UTC-4, Luciano Ferrari wrote: > > Excellent Fabio!!! > > Thanks for the suggestion we will take that into account. > > Luciano > > El viernes, 31 de julio de 2015, 17:30:07 (UTC-3), Fabio Caritas > Barrionuevo da

Re: New to Django

2015-08-02 Thread Lachlan Musicman
No Problems. Also, the Django tutorial is *excellent* intro - can't recommend it enough. -- The most dangerous phrase in the language is, "We've always done it this way." - Grace Hopper On 3 August 2015 at 11:02, Prabath Peiris wrote: > > Hi Lachlan > > > Thank

Re: New to Django

2015-08-02 Thread Prabath Peiris
Hi Lachlan Thank you for pointing to the right direction. I know this is a long shot, but it will be worth the time Thank you Prabath On Sunday, August 2, 2015 at 7:01:51 PM UTC-4, Lachlan Musicman wrote: > > Hi Prabath, > > The best place to get started if you would like to contribute

Re: New to Django

2015-08-02 Thread Lachlan Musicman
Hi Prabath, The best place to get started if you would like to contribute is the "low hanging fruit" part of the Django codebase: https://code.djangoproject.com/query?status=!closed=1 and the Django Developers email list if you want to ask for some help

Re: same field in two classes

2015-08-02 Thread Robin Lery
You can use inheritance. Or content type. Or use signals to get the value of salary from one model and save it to another model. On 2 Aug 2015 23:38, "Alex Heyden" wrote: > Sorry, I think there might be a bit of a language barrier. What do you > mean by "take the value of

Re: BaseListView's get_context_data is missing kwargs?

2015-08-02 Thread James Schneider
Is there a reason you are using BaseListView rather than ListView? The docs mention that BaseListView is not really meant to be used directly. ListView also includes some extra context processing beyond the base class that may be of use. -James On Aug 2, 2015 3:21 PM, "jordi collell"

Models.clean() how to raise ValidationError WITH error_code and show field_based errors in the Form-Template?

2015-08-02 Thread jordi collell
An easy way is to test that the rendered form has the error message raised suring rhe validation. -- 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

Re: Restricting CreateView

2015-08-02 Thread jordi collell
I think you don't need extra packages for the task. You can overwrite the dispatch to validate permissions on get and post create view. -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails

BaseListView's get_context_data is missing kwargs?

2015-08-02 Thread jordi collell
Not sure if i'm understanding what are you saying. But kwargs on get.. Are stored on a object property. Self.kwargs (prior the dispatch) method. -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving

BaseListView's get_context_data is missing kwargs?

2015-08-02 Thread jordi collell
Not sure if i'm understanding what are you saying. But kwargs on get.. Are stored on a object property. Self.kwargs (prior the dispatch) method. -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving

Re: Custom User Migration Error

2015-08-02 Thread mddengo
It worked, thanks!! On Sunday, August 2, 2015 at 2:20:07 PM UTC-4, Amitt Bhardwj wrote: > > Try deleting migration folder in your app and run ./manage.py migrate > > On Sun, Aug 2, 2015 at 11:45 PM, wrote: > > Hi everyone, > > > > I've recently started adding user

Re: Custom User Migration Error

2015-08-02 Thread Amitt Bhardwj
Try deleting migration folder in your app and run ./manage.py migrate On Sun, Aug 2, 2015 at 11:45 PM, wrote: > Hi everyone, > > I've recently started adding user authentication to my app using Google's > OAuth2. I found a sample app online >

Custom User Migration Error

2015-08-02 Thread mddengo
Hi everyone, I've recently started adding user authentication to my app using Google's OAuth2. I found a sample app online (http://blog.jez.io/2014/10/20/using-google-apps-for-cmu-authentication/), tweaked it slightly for my own needs, and got it working. However, once I tried changing the

Re: same field in two classes

2015-08-02 Thread Alex Heyden
Sorry, I think there might be a bit of a language barrier. What do you mean by "take the value of employee salary to payroll salary?" On Sun, Aug 2, 2015 at 12:12 PM, Giovanny Vizcaya wrote: > Good day,i'm new in django and i'm doing a project, i have a class >

same field in two classes

2015-08-02 Thread Giovanny Vizcaya
Good day,i'm new in django and i'm doing a project, i have a class "Employee" with atribute "salary", same time i have class "Payroll" with atribute "salary", how can i take the value of employee salary to payroll salary? thank you in advance for answers -- You received this message because

New to Django

2015-08-02 Thread Prabath Peiris
Hi I am new to Django. I just complete the tutorial session and it looks awesome. I am a Zend Framework 2 + Apigility user. I have contribute to the Apigility codebase and looking to switch to Django. I always like (try) to contribute to the codebase as a learning process. Hope to do this for

Re: Newbie

2015-08-02 Thread Sergiy Khohlov
Welcome aboard 2 серп. 2015 16:38 "Matthew Yankey" пише: > Hi, matthew here. > > I just started reading about django. hope to learn from this group as well. > > Thanks > > -- > You received this message because you are subscribed to the Google Groups > "Django users" group.

Newbie

2015-08-02 Thread Matthew Yankey
Hi, matthew here. I just started reading about django. hope to learn from this group as well. Thanks -- 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

Re: Speedy Mail Software

2015-08-02 Thread Stuart Longland
On 01/08/15 22:56, Uri Even-Chen wrote: > I'm interested in creating a new webmail platform based on Python and > Django (with jQuery and JavaScript), which will be free software & open > source - Speedy Mail Software. I created a project called Speedy Mail > Software

Re: Introduction to Pulpo-Forms

2015-08-02 Thread sarfaraz ahmed
Demos looks great. Can you post some videos showing actual implementationsin some project. I am planning to work on project which need to capture geo-location .. I think this will be awesome.. Great work...!! Regards, Sarfaraz Ahmed On Sat, Aug 1, 2015 at 2:55 AM, Luciano Ferrari

Re: Newbie: Saving User and UserProfle from same template

2015-08-02 Thread sarfaraz ahmed
It worked for me!! Please review my code... and let me know if I have done everything correct...!! On Sun, Aug 2, 2015 at 12:25 PM, sarfaraz ahmed wrote: > Changed the edit_user to following. it works fine except... newly added > field date_of_birth does not load

Re: Newbie: Saving User and UserProfle from same template

2015-08-02 Thread sarfaraz ahmed
Changed the edit_user to following. it works fine except... newly added field date_of_birth does not load data. Please take a look at link below http://pastebin.com/nXpiLMJp Regards,