Looking for a Django co-founder

2019-03-14 Thread Deepak sharma
Hi Zack, find me on finddeepak.com Good to connect with you on this. -- 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

Re: Using signals to populate another model based on new registered user

2019-03-10 Thread Deepak sharma
Simple Answer: DON'T . Resort to signals only when there is No Alternatives left. Using Signals looks tempting but as project grows, it really becomes a Mess to manage each of them. One simply becomes a confused and debugging becomes a real Hell. I suffered from this Problem. hence recommends t

Re: Django Login Error

2018-07-29 Thread Deepak sharma
I recommend :* DON'T,* because it is by default UserIdentifier, It is used to make UserLogins and you have to override a lot of builtIns to achieve what you are trying to do. But if you still want to: `username` validator is defined in AbstractUser Class, and inheritence flow is like: Abst

How can i add my django project to Bitbucket ?

2016-07-05 Thread Deepak Sharma
I have created a simple django project and i have created a simple app in it . Now i want to use Bitbucket for code development since we are working in a team how could i possibly do that ? -- You received this message because you are subscribed to the Google Groups "Django users" group. To u

virtualenv help needed

2014-05-28 Thread Deepak Sharma
A year before I developed an applciation in django==1.4.5 version. Few days before I installed virtualenv with django version 1.4.5. In my application I have to place "media" folder inside /usr/local/lib/[ython2.7/dist-package/django/contrib/admin/media but after installating virtualenv I didn'

Re: django 1.5.2

2013-09-22 Thread Deepak Sharma
On Sun, Sep 22, 2013 at 10:46 PM, Harjot Mann wrote: > While upgrading my django version I am getting this error. > > http://202.164.53.122/~harjotmann/error.png In your urls your are passing three arguments but django 1.5.x accept only one, so delete extra arguments. -- Deepak Kumar Sharma Bl

Re: upgrading to 1.5.1

2013-08-18 Thread Deepak Sharma
On Sun, Aug 18, 2013 at 12:21 PM, Harjot Mann wrote: > Hello Everyone > Currently I am using django version 1.4.5 and I want to upgrade it to > 1.5.1, I have an app in django. I want to know that what problems will > I face while upgrading to that version. I have no idea about the > features of ne

Avatar save

2013-08-01 Thread Deepak Sharma
Hello I am using django-avatar croping tool. Image crop well. That cropped image goes to avatar folder which is in /usr/local/lib/python2.7/dist-packages/django/contrib/admin/media/avatar/. I want that user save that cropped image to his/her favorite destination (client side). -- Deepak Kumar

Image cropping tool

2013-07-16 Thread Deepak Sharma
I want an image cropping tool in my app. It should work like this when i clicked on browse button, after selecting image image cropping tool pop up and image crop and save in it. I am trying to add jcrop image cropping tool but i don't have much knowledge that how i attached it with python as it al

Re: django admin

2013-07-02 Thread Deepak Sharma
On Tue, Jul 2, 2013 at 9:05 PM, Kakar Arunachal Service wrote: > I am really confused here Can i change the admin url??? Or does it always > have to be > "www.example.com/admin" ??? Hi, Yes, you can change this. At the place of www.example.com give your IP address or if you are using this on

Re: Registration error

2013-06-24 Thread Deepak Sharma
, (r'^souvenir/EE/', 'ee'), (r'^souvenir/IT/', 'it'), ) And my path where my account folder is present is home/souvenir/userprofile/templates/userprofile/account On Tue, Jun 25, 2013 at 4:14 AM, Marcin Szamotulski wrote: > On 16:1

Re: Registration error

2013-06-24 Thread Deepak Sharma
On Mon, Jun 24, 2013 at 3:58 PM, Tom Evans wrote: > > Looks like you've updated your {% url %} tags to quote the view name, > and in this case, you've quoted both the view name and the argument > that should be used. This leads django to not find the view name. > > Eg: {% url "email_validation_pro

Registration error

2013-06-24 Thread Deepak Sharma
I am running an application everything running properly but when i trying to sign-up it displays an error NoReverseMatch at /accounts/register/ Reverse for 'email_validation_process key' with arguments '()' and keyword arguments '{}' not found. Error during template rendering In template /usr/l

Script to move django 1.4.3 to 1.5.1

2013-06-19 Thread Deepak Sharma
Hi everyone I just started learning django. Question arises in my mind to write a script, by using that script i wanted to jump django version 1.5.1 without effecting my previous settings or effecting my application which is currently running on django 1.4.3. Is it possible to do that? If yes tha