aboutsummaryrefslogtreecommitdiffstats
path: root/webface/templates/model_list.html
diff options
context:
space:
mode:
authorbnewbold <bnewbold@robocracy.org>2017-01-11 18:26:04 -0800
committerbnewbold <bnewbold@robocracy.org>2017-01-11 18:26:37 -0800
commitecc4f3ef8a23e3d4143954fdccc5a28a83f9039f (patch)
tree0d835d82c53e04064b694adbe26e34ef4af86315 /webface/templates/model_list.html
parent640a433fa8be6c0269db148e08ccf2bfe03957ca (diff)
downloadmodelthing-ecc4f3ef8a23e3d4143954fdccc5a28a83f9039f.tar.gz
modelthing-ecc4f3ef8a23e3d4143954fdccc5a28a83f9039f.zip
basic sandbox wiki editing and creation
Diffstat (limited to 'webface/templates/model_list.html')
-rw-r--r--webface/templates/model_list.html8
1 files changed, 7 insertions, 1 deletions
diff --git a/webface/templates/model_list.html b/webface/templates/model_list.html
index 4c80315..ad4f4f4 100644
--- a/webface/templates/model_list.html
+++ b/webface/templates/model_list.html
@@ -1,11 +1,17 @@
{{# partial content}}
-<h1>Models</h1>
+{{#each namespace }}
+<h1>Models: {{ this[0] }}</h1>
+{{/each}}
+{{# if model_slug_list }}
<ul>
{{#each model_slug_list }}
<li><a href="/m/{{ this[0] }}/{{ this[1] }}/">{{ this[1] }}</a>
{{/each}}
</ul>
+{{else}}
+None Yet!
+{{/if}}
{{/partial}}
{{~> base.html~}}