Files
DiceCloud/rpg-docs/client/views/private/characterList/characterSideList.html
Stefan Zermatten 37268495ae Got some Polymer 1.0 elements working with 1.4
Character sheets now visible, but vulcanize broke, using raw head imports instead
2016-12-22 11:15:30 +02:00

16 lines
434 B
HTML

<template name="characterSideList">
<core-item icon="social:people" label="Characters"></core-item>
{{#if characters.count}}
<div>
{{#each characters}}
<a href={{pathFor route="characterSheet" data=this}}
class="singleLineItem characterRepresentative"
layout horizontal center>
<iron-icon icon="image:brightness-1"></iron-icon>
<div>{{name}}</div>
</a>
{{/each}}
</div>
{{/if}}
</template>