aboutsummaryrefslogtreecommitdiffstats
path: root/webface/templates/model_list.html
diff options
context:
space:
mode:
authorbnewbold <bnewbold@robocracy.org>2017-01-04 00:06:56 -0800
committerbnewbold <bnewbold@robocracy.org>2017-01-04 00:06:56 -0800
commit351a2e81fdc50a16d44efd25d1516de7afb08b11 (patch)
treec7120426a550026ac7c7c1ee540bad06f342ffeb /webface/templates/model_list.html
parent4e2937fc614538fd73363a41667c9472fb6ff5f3 (diff)
downloadmodelthing-351a2e81fdc50a16d44efd25d1516de7afb08b11.tar.gz
modelthing-351a2e81fdc50a16d44efd25d1516de7afb08b11.zip
switch URL scheme to be based at /m/{namespace}/{model}/
Diffstat (limited to 'webface/templates/model_list.html')
-rw-r--r--webface/templates/model_list.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/webface/templates/model_list.html b/webface/templates/model_list.html
index db11bdc..4c80315 100644
--- a/webface/templates/model_list.html
+++ b/webface/templates/model_list.html
@@ -1,9 +1,9 @@
{{# partial content}}
-<h1>Example Models</h1>
+<h1>Models</h1>
<ul>
-{{#each model_slug_list slug}}
-<li><a href="/model/{{this}}/">{{ this }}</a>
+{{#each model_slug_list }}
+<li><a href="/m/{{ this[0] }}/{{ this[1] }}/">{{ this[1] }}</a>
{{/each}}
</ul>