{% if class == 'test' %}
{% set col = 'col-md-3' %}
{% else %}
{% set col = 'col-md-4' %}
{% endif %}
{% for column in grid.columns %}
{% if column.visible(grid.isReadyForExport) and column.renderBlockId!="id" %}
{{column.title}}
{% endif %}
{% endfor %}
{% endblock grid_titles %}
{# ---------------------------------------------------- grid_rows --------------------------------------------------- #}
{% block grid_rows %}
{% set num = 1 %}
{% for row in grid.rows %}
{% set last_row = loop.last %}
{% spaceless %}
{% set gridColumns %}
{% for column in grid.columns %}
{% if column.visible(grid.isReadyForExport) %}
{% if column.renderBlockId == "id" %}