view-unfold{12}
authorThierry Parmentelat <thierry.parmentelat@inria.fr>
Fri, 22 Mar 2013 11:19:00 +0000 (12:19 +0100)
committerThierry Parmentelat <thierry.parmentelat@inria.fr>
Fri, 22 Mar 2013 11:19:00 +0000 (12:19 +0100)
trash/dashboard.py
trash/pluginview.py
trash/sliceview.py
views/templates/view-unfold1.html [moved from trash/templates/view-slice.html with 100% similarity]
views/templates/view-unfold2.html [moved from trash/templates/view-plugin.html with 100% similarity]

index cd1ba3d..f1ce698 100644 (file)
@@ -65,7 +65,7 @@ def dashboard_view (request):
                 ),
             ])
 
-    # variables that will get passed to the view-plugin.html template
+    # variables that will get passed to the view-unfold2.html template
     template_env = {}
     
     # define 'unfold2_main' to the template engine
@@ -105,5 +105,5 @@ def dashboard_view (request):
     # define {js,css}_{files,chunks}
     prelude_env = page.prelude_env()
     template_env.update(prelude_env)
-    return render_to_response ('view-plugin.html',template_env,
+    return render_to_response ('view-unfold2.html',template_env,
                                context_instance=RequestContext(request))
index c2939e1..5735015 100644 (file)
@@ -91,6 +91,6 @@ def test_plugin_view (request):
     # define {js,css}_{files,chunks}
     prelude_env = page.prelude_env()
     template_env.update(prelude_env)
-    return render_to_response ('view-plugin.html',template_env,
+    return render_to_response ('view-unfold2.html',template_env,
                                context_instance=RequestContext(request))
                                
index a1048bd..46f1169 100644 (file)
@@ -73,7 +73,7 @@ def slice_view (request, slicename=tmp_default_slice):
                 ),
               ])
 
-    # variables that will get passed to the view-plugin.html template
+    # variables that will get passed to the view-unfold2.html template
     template_env = {}
     
     # define 'unfold2_main' to the template engine
@@ -113,7 +113,7 @@ def slice_view (request, slicename=tmp_default_slice):
     # define {js,css}_{files,chunks}
     prelude_env = page.prelude_env()
     template_env.update(prelude_env)
-    result=render_to_response ('view-slice.html',template_env,
+    result=render_to_response ('view-unfold1.html',template_env,
                                context_instance=RequestContext(request))
     print 'result=',result
     return result