pull/95/head
eric 2018-07-23 14:41:05 -04:00
parent 147822b2a5
commit 24f1321321
2 changed files with 18 additions and 3 deletions

View File

@ -1,5 +1,4 @@
Django==1.8.14
#Django==1.10.8
Django==1.11.14
Fabric==1.6.0
MySQL-python==1.2.5
Pillow==3.4.2
@ -32,7 +31,7 @@ django-jsonfield==1.0.0
django-maintenancemode==0.11.2
django-mptt==0.8.6
#django-notification==0.2
git+git://github.com/eshellman/django-notification.git@2768cf4863b152e5f9347660bb0b1d8fd1f972b2
git+git://github.com/eshellman/django-notification.git@c830ffa29d95e986dda5498a8a74e4a9334283c9
django-registration==2.1.2
django-selectable==1.1.0
django-smtp-ssl==1.0

View File

@ -122,6 +122,22 @@ TEMPLATES = [
}
},
{
'BACKEND': 'django.template.backends.django.DjangoTemplates',
'DIRS': [join(PROJECT_DIR, "frontend", "templates", "notification"),
],
'APP_DIRS': True,
'OPTIONS':{
'context_processors':[
'django.template.context_processors.debug',
'django.template.context_processors.i18n',
'django.template.context_processors.static',
'regluit.context_processors.count_unseen',
],
'autoescape' : False,
},
'NAME': 'text_notification',
}
]