summaryrefslogtreecommitdiff
path: root/templates/profile.hbs
blob: 240c4435bfb533a6124cd7d5d16cc0450c7cb817 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{{#*inline "page"}}
{{#if user}}
    <p>Profile for {{ user }}</p>
{{/if}}
<table>
    <thead>
        {{#each headings}}
            <th>{{ this }}</th>
        {{/each}}
    </thead>
    <tbody>
        {{#each entries}}
            <tr>
            {{#each this}}
                <td>{{ this }}</td>
            {{/each}}
            </tr>
        {{/each}}
    </tbody>
</table>
{{/inline}}
{{~> (parent)~}}