Skip to content

Instantly share code, notes, and snippets.

@digilord
Created July 2, 2014 17:33
Show Gist options
  • Save digilord/684b5a1c7ba0b7f5bd15 to your computer and use it in GitHub Desktop.
Save digilord/684b5a1c7ba0b7f5bd15 to your computer and use it in GitHub Desktop.
<template name='_listForm'>
{{> UI.contentBlock}}
{{#with data}}
<form id='{{_id}}_form' class="{{../css}}" name='{{../form.name}}' role='form'>
<div class='row'>
{{#each ../fields}}
{{#formField}}{{/formField}}
{{/each}}
<input type='submit' value='Save' class='btn btn-success col-md-4 col-md-offset-1'>
<button class="close-form btn btn-danger col-md-4 col-md-offset-2">Cancel</button>
</div>
</form>
{{/with}}
</template>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment