diff options
Diffstat (limited to 'webface/templates/model_view.html')
-rw-r--r-- | webface/templates/model_view.html | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/webface/templates/model_view.html b/webface/templates/model_view.html index 4dba406..4add92b 100644 --- a/webface/templates/model_view.html +++ b/webface/templates/model_view.html @@ -1,17 +1,19 @@ {{# partial content}} -<h1>{{ model_id }}</h1> +<h1>{{ model_slug }}</h1> -<b>Full Name</b>: {{ model.name }} +<h2>Metadata</h2> +<dl> + <li><b>Full Name</b>: {{ model_name }} + <li><b>Description</b>: {{ model_description }} +</dl> -<b>Raw Model:</b> +<h2>Modelica</h2> <pre> -{{ raw_model }} +{{ modelica }} </pre> - -<h2>Other Info</h2> -{{ page_text }} - +<h2>Wiki Page</h2> +{{ markdown }} {{/partial}} {{~> base.html~}} |