diff options
author | bnewbold <bnewbold@robocracy.org> | 2017-01-16 16:56:47 -0800 |
---|---|---|
committer | bnewbold <bnewbold@robocracy.org> | 2017-01-16 16:56:47 -0800 |
commit | 135616d37d1586d243017504777ce8b1bf361151 (patch) | |
tree | 60a39b7079d775c1d603355ed2d114dbe2fd4876 /src | |
parent | 6c9ec4f093ecfa48fe3a4a3fa99de16c5676d7dc (diff) | |
download | modelthing-135616d37d1586d243017504777ce8b1bf361151.tar.gz modelthing-135616d37d1586d243017504777ce8b1bf361151.zip |
only show compiled models conditionally
Diffstat (limited to 'src')
-rw-r--r-- | src/bin/mt-webface.rs | 2 |
1 files changed, 2 insertions, 0 deletions
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)), |