TIP: Django project's annoying errors/bugs
If you encounter the error: ViewsNotFound and there is no error messages in your error logs. here's a way to find out what is causing the error.
" Open your python shell ( python manage.py shell ) and import the views.py that contains the view function that is missing(even if it's not) " then tadddaaah! you will get the error message that you are expecting.
*note: when you encounter some weird errors and you can't trace it try doing it in python shell. It's really helpful and sometimes it saves your life. :D













