<tr class="edit-item-row">
    <td class="btn-group-xs">
        {# TODO: Make this pretty for row actions (add tax, add item before, add item after...) #}
        <a class="btn btn-default btn-xs text-red" title="{% trans from 'core' %}item.form.remove{% endtrans %}"
           href="#" onclick="jQuery(this).parents('tr').remove();return false;"><span
                    class="glyphicon glyphicon-trash"></span></a>

    </td>
    <td>
        {{ form_widget(form.tipoRetencion) }}
    </td>
    <td>
        {{ form_widget(form.base) }}
        {{ form_errors(form.base) }}
    </td>
    <td>
        {{ form_widget(form.porcentaje) }}
        {{ form_errors(form.porcentaje) }}
    </td>
    <td>
        {{ form_widget(form.retenido) }}
        {{ form_errors(form.retenido) }}
    </td>

</tr>
