blob: ad4f4f47aafb4211fee66b8ec16bdd8fa2293a9a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
{{# partial content}}
{{#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~}}
|