.widget header> h5 ' Lista de span.fw-semi-bold Itens Importados do TCM .widget-body - if itens_importados.empty? h6 Nenhum registro encontrado. - else .table-responsive table.table.table-hover thead tr th width="9%" Código th width="45%" Descrição Técnica th Categoria th width="10%" Perecível? th width="10%" Combustível? tbody - itens_importados.each do |item_importado| tr td = "##{item_importado.item.id}" td = item_importado.item.descricao_tecnica td = item_importado.item.categoria.titulo td align="center" = label_sim_nao(item_importado.item.perecivel?) td align="center" = label_sim_nao(item_importado.item.combustivel?)