aboutsummaryrefslogtreecommitdiffstats
path: root/webface/templates/model_list.html
diff options
context:
space:
mode:
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~}}