<tr id="<?=$this->GetEditAreaId($arElement['SECTION']);?>">
<td>
<?foreach($arElement["SECTION"]["PATH"] as $arPath):?>
<? echo $arPath['NAME']; ?>
<?endforeach?>
<a href="<?=$arElement["DETAIL_PAGE_URL"]?>"><?=$arElement["NAME"]?>
</td>
<?foreach($arElement["DISPLAY_PROPERTIES"] as $pid=>$arProperty):?>
<td>
<?if(is_array($arProperty["DISPLAY_VALUE"]))
echo implode(" / ", $arProperty["DISPLAY_VALUE"]);
elseif($arProperty["DISPLAY_VALUE"] === false)
echo " ";
else
echo $arProperty["DISPLAY_VALUE"];?>
</td> |