Add django-widget-tweaks dependency.

This commit is contained in:
Christopher Charbonneau Wells 2017-08-15 16:50:09 -04:00
parent 9dc0821c3f
commit 3d90a21144
3 changed files with 6 additions and 1 deletions

View File

@ -6,3 +6,4 @@ url = "https://pypi.python.org/simple"
django = "*" django = "*"
djangorestframework = "*" djangorestframework = "*"
django-filter = "*" django-filter = "*"
django-widget-tweaks = "*"

5
Pipfile.lock generated
View File

@ -1,7 +1,7 @@
{ {
"_meta": { "_meta": {
"hash": { "hash": {
"sha256": "a0ef885217179eed1565af7ec6a732e8b141fb42c156f152380a65feac7cb1fe" "sha256": "bae82f005879197d15002ee3084605c5d70e02154eb49c1bc76d085d4cd6d51b"
}, },
"requires": {}, "requires": {},
"sources": [ "sources": [
@ -18,6 +18,9 @@
"django-filter": { "django-filter": {
"version": "==1.0.4" "version": "==1.0.4"
}, },
"django-widget-tweaks": {
"version": "==1.4.1"
},
"djangorestframework": { "djangorestframework": {
"version": "==3.6.3" "version": "==3.6.3"
}, },

View File

@ -23,6 +23,7 @@ INSTALLED_APPS = [
'core', 'core',
'rest_framework', 'rest_framework',
'widget_tweaks',
'django.contrib.admin', 'django.contrib.admin',
'django.contrib.auth', 'django.contrib.auth',