summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgebele <gebele@alfadeo.de>2011-08-29 13:08:34 +0200
committergebele <gebele@alfadeo.de>2011-08-29 13:08:34 +0200
commit606cc89926b8e12c2007af1f4a1cbdefc9b9d3bd (patch)
tree138e3e8274c05f288ed434f632fdab1b3bf878b2
parent7b24e1ba03940dfd6259b8eba84f61ccc2d08952 (diff)
show only users models
-rw-r--r--views/predict.haml11
1 files changed, 6 insertions, 5 deletions
diff --git a/views/predict.haml b/views/predict.haml
index ec667e6..65e4113 100644
--- a/views/predict.haml
+++ b/views/predict.haml
@@ -31,11 +31,12 @@
Choose one or more prediction models
%br
- @models.each do |model|
- %input{:type => 'checkbox', :name => "selection[#{model.id}]", :value => true, :id => "model#{model.id}", :disabled => false}
- %label{:for => "model#{model.id}"}
- = model.name
- -#%input{:type => 'checkbox', :name => "selection[#{model.id}]", :value => true, :id => model.id, :disabled => !is_authorized(model.uri, "GET")}
- %br
+ - if is_authorized(model.web_uri, "DELETE")
+ %input{:type => 'checkbox', :name => "selection[#{model.id}]", :value => true, :id => "model#{model.id}", :disabled => false}
+ %label{:for => "model#{model.id}"}
+ = model.name
+ -#%input{:type => 'checkbox', :name => "selection[#{model.id}]", :value => true, :id => model.id, :disabled => !is_authorized(model.uri, "GET")}
+ %br
%br
%input{:type => 'hidden', :name => 'subjectid', :id => 'subjectid', :value => session[:subjectid]}
%input{ :type => "submit", :value => "Predict", :onclick => "getsmiles();"}