From 135616d37d1586d243017504777ce8b1bf361151 Mon Sep 17 00:00:00 2001 From: bnewbold Date: Mon, 16 Jan 2017 16:56:47 -0800 Subject: only show compiled models conditionally --- src/bin/mt-webface.rs | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src') diff --git a/src/bin/mt-webface.rs b/src/bin/mt-webface.rs index b9e3cad..b26e4fe 100644 --- a/src/bin/mt-webface.rs +++ b/src/bin/mt-webface.rs @@ -88,6 +88,8 @@ fn model_view(r: &mut Request) -> PencilResult { context.insert("latex".to_string(), me.ast.repr_latex().unwrap()); context.insert("editable".to_string(), if namespace == "sandbox" { "true".to_string() } else { "".to_string() }); + context.insert("computable".to_string(), + if me.ast.transpile_scheme().is_ok() { "true".to_string() } else { "".to_string() }); r.app.render_template("model_view.html", &context) }, Err(_) => Err(PencilError::PenHTTPError(pencil::HTTPError::NotFound)), -- cgit v1.2.3