remove some dead commented out code.
authorDiane Trout <diane@caltech.edu>
Mon, 24 Sep 2012 22:26:14 +0000 (15:26 -0700)
committerDiane Trout <diane@caltech.edu>
Mon, 24 Sep 2012 22:26:14 +0000 (15:26 -0700)
htsworkflow/frontend/experiments/views.py

index 869ed86f1d4a08490a811a347cf4f94b1a270835..5d4283da67288868b1e2a0bd0fd26bcfc78a3435 100644 (file)
@@ -28,12 +28,6 @@ from htsworkflow.frontend.experiments.experiments import \
 
 def index(request):
     all_runs = DataRun.objects.order_by('-run_start_time')
-    #t = loader.get_template('experiments/index.html')
-    #c = Context({
-    #    'data_run_list': all_runs,
-    #})
-    #return HttpResponse(t.render(c))
-    # shortcut to the above module usage
     return render_to_response('experiments/index.html',{'data_run_list': all_runs})
 
 def detail(request, run_folder):