aboutsummaryrefslogtreecommitdiffstats
path: root/webface/templates/model_edit.html
diff options
context:
space:
mode:
Diffstat (limited to 'webface/templates/model_edit.html')
-rw-r--r--webface/templates/model_edit.html27
1 files changed, 27 insertions, 0 deletions
diff --git a/webface/templates/model_edit.html b/webface/templates/model_edit.html
new file mode 100644
index 0000000..38aef60
--- /dev/null
+++ b/webface/templates/model_edit.html
@@ -0,0 +1,27 @@
+{{# partial content}}
+<h1 style="margin-bottom: 0.1em;">
+ <a href="/m/{{namespace}}/" style="color: black; text-decoration: none;">
+ {{ namespace }}</a>/{{ model_name }}
+</h1>
+
+<form action="/m/{{namespace}}/{{model_slug}}/edit/" method="POST">
+
+<h3>Modelica Code</h3>
+The computable model must conform to a subset of the Modelica language.
+
+<p><b>WARNING:</b> you won't get errors or help if your code is wrong,
+just a 500 error.
+
+<br><br>
+<textarea name="modelica" style="width:50em; height:19em;">{{ modelica }}</textarea>
+
+<h3>Markdown</h3>
+<textarea name="markdown" style="width:50em; height:19em;">{{ markdown }}</textarea>
+
+<br><br>
+<input type="submit" value="Submit!"></input>
+
+</form>
+
+{{/partial}}
+{{~> base.html~}}