Hi Django users, developing my application for storing the employee's expenses, my database has a model class named employee that has the below columns (name, password, isAdmin, branch, isActive) The name and the password should be used for the login and the isAdmin should be used for the permissions. e.g. A non-admin employ will only have the permissions to save expenses, whereas an admin employ would have permissions to create new expenses' categories, new branches, new projects etc. Also the employee_id should be the foreign key onto the expenses table, thus the expense save should get the logged in employee's id and store it to the expense record.
I have no previous experience in django apps and I want to know if my app's requirements are such that I 'd better use the integrated login which stores to the table auth_user or develop my own login functionality that ommits the auth_user and logins using my Employee table. Thanks a lot. -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-us...@googlegroups.com. To unsubscribe from this group, send email to django-users+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/django-users?hl=en.