'timeside.player',
'timeside.server',
'jsonrpc',
- 'south',
+ #'south',
'sorl.thumbnail',
'timezones',
'jqchat',
HAYSTACK_SIGNAL_PROCESSOR = 'haystack.signals.RealtimeSignalProcessor'
-HAYSTACK_SEARCH_RESULTS_PER_PAGE = 50
\ No newline at end of file
+HAYSTACK_SEARCH_RESULTS_PER_PAGE = 50
os.environ['DJANGO_SETTINGS_MODULE'] = 'settings'
-import django.core.handlers.wsgi
-application = django.core.handlers.wsgi.WSGIHandler()
+from django.core.wsgi import get_wsgi_application
+application = get_wsgi_application()
author_email = "yomguy@parisson.com",
version = '1.6',
install_requires = [
- 'django==1.6.11',
- 'django-registration',
+ 'django==1.8.4',
+ 'django-registration-redux',
'django-extensions',
'django-timezones',
'django-jqchat',
-Subproject commit 91973b13f9dc9405052727c0c525d342dee15562
+Subproject commit c5786d32a14a841469db2588092390073b8d0688
class LocationForm(ModelForm):
class Meta:
model = Location
+ fields = '__all__'
def __init__(self, *args, **kwds):
super(LocationForm, self).__init__(*args, **kwds)