<%- _.__('webkul_prestashop_connector.prestashop.association') %>
<%- _.__('webkul_prestashop_connector.prestashop.akeneo.association') %>
<% _.each(fields, function(field) { %>
<%- _.__(field.label) %>
<% selectVal = typeof(model) !== 'undefined' && typeof(model.association) !== 'undefined' && typeof(model.association[field.code]) !== 'undefined' ? model.association[field.code] : '' %>
<%- _.__('Select Association') %>
<% _.each(associations, function(association) { %>
<% if(selectVal === association.code) { %> selected = "selected" <% } %> > <%- typeof(association.labels[currentLocale]) !== 'undefined' ? association.labels[currentLocale] : association.code %>
<% }); %>
<% }) %>