-
Notifications
You must be signed in to change notification settings - Fork 12
loan feature issue completed #34
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Conversation
src/chits/settings.py
Outdated
| 'USER': 'root', | ||
| 'PASSWORD':"karthik", | ||
| 'HOST': '', | ||
| #'NAME': 'heroku_e18935074c20bff', |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please don't change the database name which is already in master. Please use environment variables to read database credentials
| 'django.contrib.sessions.middleware.SessionMiddleware', | ||
| 'django.middleware.common.CommonMiddleware', | ||
| 'django.middleware.csrf.CsrfViewMiddleware', | ||
| # 'django.middleware.csrf.CsrfViewMiddleware', |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why does this middleware commented out ?
src/chits/urls.py
Outdated
| url(r'^customers/delete$', chit_main_app.views.delete_customer), | ||
| url(r'^customers/grouplist$', chit_main_app.views.customersgroups), | ||
| url(r'^customers/history$', chit_main_app.views.customershistory), | ||
| url(r'^customers/transactions$', chit_main_app.views.customerstransactions), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why does this url is removed ? Are we not using it ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
we are not using this anymore
No description provided.