This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{# ------------------------------------------------------ grid ------------------------------------------------------ #} | |
{% block grid %} | |
<div class="grid"> | |
{% if grid.totalCount > 0 or grid.isFiltered or grid.noDataMessage is sameas(false) %} | |
<form id="{{ grid.hash }}" action="{{ grid.routeUrl }}" method="post"> | |
<div class="grid_header"> | |
{% if grid.massActions|length > 0 %} | |
{{ grid_actions(grid) }} | |
{% endif %} | |
</div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{# ------------------------------------------------------ grid ------------------------------------------------------ #} | |
{% block grid %} | |
<div class="grid"> | |
{% if grid.totalCount > 0 or grid.isFiltered or grid.noDataMessage is sameas(false) %} | |
<form id="{{ grid.hash }}" action="{{ grid.routeUrl }}" method="post"> | |
{% if grid.massActions|length > 0 %} | |
{{ grid_actions(grid) }} | |
{% endif %} | |
<table> | |
{% if grid.isTitleSectionVisible %} |