Template reuse in meteor
问题 I'm trying to reuse some control elements in my Meteor app. I'd like the following two templates to toggle visibility and submission of different forms. <template name='addControl'> <img class='add' src='/images/icon-plus.png' /> </template> <template name='okCancelControl'> <img class='submit' src='/images/icon-submit.png' /> <img class='cancel' src='/images/icon-cancel.png' /> </template> I'll call these templates in another: <template name='insectForm'> {{#if editing}} <!-- form elements -