Project for the UPV to develop an app like BlaBlaCar but only for UPV people.
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge branch 'develop'

+8
+8
upvcarshare/config/urls.py
··· 63 63 ] 64 64 # Media URLs on debug 65 65 urlpatterns += static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT) 66 + 67 + # If is installed debug_toolbar, add its urls 68 + if 'debug_toolbar' in settings.INSTALLED_APPS: 69 + import debug_toolbar 70 + 71 + urlpatterns += [ 72 + url(r'^__debug__/', include(debug_toolbar.urls)), 73 + ]