Since Django 1.7, there is feature to define app's name different from the name used when run startapp View more
In Django's default settings, there are TIME_ZONE and USE_TZ options that define which timezone used in admin.However in views, time fetched from database is usually UTC timezone. To convert it to local time, pytz package will get it done. View more
Since Django 1.6, running third-party django application, you will get error "ImportError: No module named defaults" View more