11 lines
273 B
HTML
11 lines
273 B
HTML
<template name="characterSideList">
|
|
<core-item icon="social:people" label="Characters"></core-item>
|
|
{{#if characters.count}}
|
|
<div>
|
|
{{#each characters}}
|
|
<div class="singleLineItem characterRepresentative">{{name}}</div>
|
|
{{/each}}
|
|
</div>
|
|
{{/if}}
|
|
</template>
|