Re: existing database connectivity

2016-12-21 Thread Rasika
> 1. 'django.contrib.auth' contains the core of the authentication > framework, and its default models. > 2. 'django.contrib.contenttypes' is the Django content type system, which > allows permissions to be associated with models you create" > > > O

Re: existing database connectivity

2016-12-25 Thread Rasika
yes it worked well. Thank you so much On Saturday, December 24, 2016 at 9:46:04 AM UTC+5:30, Collin Anderson wrote: > > Hi, > > You could try re-installing psycopg2 to see if that fixes it. > > Collin > > On Thursday, December 22, 2016 at 1:55:53 AM UTC-6, Rasika wrote

Re: existing database connectivity

2016-12-26 Thread Rasika
I know how to save a record from shell command in command prompt. I want to get values from html form and save it to database table which I have created.Please help on this I am not getting proper answer or code on net. On Monday, December 26, 2016 at 9:54:25 AM UTC+5:30, Rasika wrote: > &g

installed apps

2016-12-27 Thread Rasika
hello all my question is,on my system where all installed apps are located by django. If i want to modify those where I can find those like admin app,auth app etc. and how the auth_user table saves the superuser and the user created by admin for this i have to understand the admin app first. than

Re: installed apps

2016-12-27 Thread Rasika
Thank you so much On Tuesday, December 27, 2016 at 3:55:21 PM UTC+5:30, Rasika wrote: > > hello all > my question is,on my system where all installed apps are located by django. > If i want to modify those where I can find those like admin app,auth app > etc. > and how the aut

understanding auth models

2017-01-02 Thread Rasika
Hi, whenever I created the account for user using built in admin it get stored into auth_user tablein the database.Where I can find the code for this where the connections between the auth_user and save() so that I can understand it to write my own table connections. thank you -- You receiv

finding get_user_model

2017-01-05 Thread Rasika
from django.contrib.auth import get_user_model why I am not able to find the code forget_user_model in auth app. While when I searched https://docs.djangoproject.com/en/dev/_modules/django/contrib/auth/#get_user_model I find this definition def get_user_model(): """ Returns the User model that