<md-input-container>
<%-template('form/title')%>
<%-template('form/description')%>
<checkboxes layout="column" name="<%-field.name%>" ng-model="<%-field.model%>" <%-formValidators(field)%>>
<%for(var option of field.options){

  option.model = field.model+'.'+option.value;

  %>
<%-template('form/checkbox',{field:option})%>
<%}%>
</checkboxes>
<%-template('form/messages')%>
</md-input-container>
