ferngully-aurelia-tools
Version:
Ferngully Tools for Aurelia
16 lines (15 loc) • 937 B
HTML
<template>
<!--<require from="./form-schema-panel.css"/>-->
<div class="panel panel-default formSchemaPanel">
<div class="panel-heading" ref="headerDiv" click.delegate="toggleShowing()" data-toggle="collapse">
<h4 class="panel-title">${title || controller.formSchema.name}
<div class="pull-right" style="margin-left:12px" if.one-way="collapsible"><i if.one-way="!showing" class="fa fa-angle-double-down" style="margin-right:10px"></i><i if.one-way="showing" class="fa fa-angle-double-up" style="margin-right:10px"></i></div>
</h4>
</div>
<div id.one-time="controller.formSchema.name" class="panel-collapse collapse ${showing ? 'in' : 'out'}" role="tabpanel">
<div class="panel-body">
<form-schema-collection controller.bind="controller" ></form-schema-collection>
</div>
</div>
</div>
</template>