mirror of
https://github.com/Combodo/iTop.git
synced 2026-02-27 22:24:12 +01:00
21 lines
839 B
Twig
21 lines
839 B
Twig
{# @copyright Copyright (C) 2010-2021 Combodo SARL #}
|
|
{# @license http://opensource.org/licenses/AGPL-3.0 #}
|
|
|
|
<tr role="row" id="{{ oUIBlock.GetRef() }}_row_{{ oUIBlock.GetRowId() }}" {% for cellName,cellValue in oUIBlock.GetData() %} {% if cellName == 'CSSClass' %}class="{{ cellValue }}"{% endif %}{% endfor %}>
|
|
{% for colName,column in oUIBlock.GetColumns() %}
|
|
<td>
|
|
{% set cellValueHtml = '' %}
|
|
{% for cellName,cellValue in oUIBlock.GetData() %}
|
|
{% if cellName == colName %}
|
|
{% set cellValueHtml = cellValue %}
|
|
{% endif %}
|
|
{% endfor %}
|
|
{% if cellValueHtml is empty %}
|
|
{% set cellValueHtml = ' ' %}
|
|
{% endif %}
|
|
{{ cellValueHtml|raw }}
|
|
</td>
|
|
{% endfor %}
|
|
</tr>
|
|
|