Файл: base-sys/base/views/components/user_view_section_tabs.html
Строк: 32
<?php
<table class="peep_table_3 peep_nomargin section_{$sectionName}data_table" {if empty($display)}style="display:none;"{/if}>
{foreach from=$questions key='sort' item='question' name='question'}
{if isset( $questionsData[$question.name] ) }
<tr class="{if $smarty.foreach.question.first}peep_tr_first {/if} {if $smarty.foreach.question.last}peep_tr_last{/if}">
<td class="peep_label" style="width: 20%">{if empty($labels[$question.name])}{text key="base+questions_question_`$question.name`_label"}{else}{$labels[$question.name]}{/if}</td>
<td class="peep_value"><span class="{if !empty($question.hidden)}peep_field_eye peep_remark profile_hidden_field{/if}">{$questionsData[$question.name]}</span></td>
</tr>
{/if}
{/foreach}
</table>
?>