meteor-autoform-materialize
Version:
Materialize theme for Autoform
17 lines (16 loc) • 402 B
HTML
<template name="afQuickField_materialize">
{{#if isGroup}}
{{> afObjectField}}
{{else}}
{{#if isFieldArray}}
{{> afArrayField}}
{{else}}
{{#if isHiddenInput}}
{{! if input type is defined as hidden, we don't render a form group}}
{{> afFieldInput groupAtts}}
{{else}}
{{> afFormGroup groupAtts}}
{{/if}}
{{/if}}
{{/if}}
</template>