re-enables trash/ in settings and urls so that /trash/simple/ple.inria.f14 should...
authorThierry Parmentelat <thierry.parmentelat@inria.fr>
Mon, 2 Dec 2013 12:09:42 +0000 (13:09 +0100)
committerThierry Parmentelat <thierry.parmentelat@inria.fr>
Mon, 2 Dec 2013 12:09:42 +0000 (13:09 +0100)
remember though that this of course would break the packaged app b/c trash is not packaged

myslice/settings.py
myslice/urls.py

index c51010a..c069b96 100644 (file)
@@ -195,7 +195,7 @@ INSTALLED_APPS = (
     # 'django.contrib.admindocs',
     'portal',
     # temporary - not packaged
-    'trash',
+    'trash',
     'sample',
 # DEPRECATED #    'django.contrib.formtools',
 # DEPRECATED ##    'crispy_forms',
index 8ff01f9..3210957 100644 (file)
@@ -63,6 +63,6 @@ urlpatterns = patterns(
     #
     # various trash views - bound to go away 
     #
-#    url(r'^trash/', include('trash.urls')),
+    url(r'^trash/', include('trash.urls')),
 
 )