Commit 496cbcf3d43b0a4ab1a6b3c8ae54c182421922dc
1 parent
0dc3c5ea
Exists in
master
and in
1 other branch
Junção das colunas "Número" e "Recomendação"
Showing
1 changed file
with
8 additions
and
8 deletions
Show diff stats
src/main/webapp/WEB-INF/tags/listaResultado.tag
... | ... | @@ -58,8 +58,8 @@ |
58 | 58 | |
59 | 59 | <thead> |
60 | 60 | <tr> |
61 | - <th id="erro_numero_recomendacao_${cssClass}" class="topo2 indiceAvaliar0">Número</th> | |
62 | - <th id="erro_recomendacao_${cssClass}" class="topo2 indiceAvaliar1"> Recomendações </th> | |
61 | + <!--<th id="erro_numero_recomendacao_${cssClass}" class="topo2 indiceAvaliar0">Número</th>--> | |
62 | + <th id="erro_recomendacao_${cssClass}" class="topo2 indiceAvaliar1"> Recomendação </th> | |
63 | 63 | <th id="erro_quantidade_${cssClass}" class="topo2"> Quantidade</th> |
64 | 64 | <th id="erro_linha_codigo_fonte_${cssClass}" class="topo2"> Linha(s) do código fonte</th> |
65 | 65 | </tr> |
... | ... | @@ -69,8 +69,8 @@ |
69 | 69 | <c:forEach items="${lista}" var="item"> |
70 | 70 | <c:if test="${item.error }"> |
71 | 71 | <tr id="erro_numero_recomendacao_${cssClass}_${item.checkPoint}"> |
72 | - <td headers="erro_numero_recomendacao_${cssClass}" class="celula indiceAvaliar0"><a class="sublinharLink" href="http://emag.governoeletronico.gov.br/#r${item.checkPoint}">${item.checkPoint} (link para um novo sítio)</a></td> | |
73 | - <td headers="erro_recomendacao_${cssClass}" class="celula indiceAvaliar0"> ${item.description} </td> | |
72 | + <!-- <td headers="erro_numero_recomendacao_${cssClass}" class="celula indiceAvaliar0"><a class="sublinharLink" href="http://emag.governoeletronico.gov.br/#r${item.checkPoint}">${item.checkPoint} (link para um novo sítio)</a></td> --> | |
73 | + <td headers="erro_recomendacao_${cssClass}" class="celula indiceAvaliar0"><a class="sublinharLink" href="http://emag.governoeletronico.gov.br/#r${item.checkPoint}">${item.checkPoint} ${item.description}(link para um novo sítio)</a></td> | |
74 | 74 | <td headers="erro_quantidade_${cssClass}" class="celula">${item.numberOfOccurrences} </td> |
75 | 75 | <td headers="erro_linha_codigo_fonte_${cssClass}" class="celula"> |
76 | 76 | |
... | ... | @@ -122,8 +122,8 @@ |
122 | 122 | |
123 | 123 | <thead> |
124 | 124 | <tr> |
125 | - <th id="aviso_numero_recomendacao_${cssClass}" class="topo2 indiceAvaliar0">Número</th> | |
126 | - <th id="aviso_recomendacao_${cssClass}" class="topo2 indiceAvaliar1"> Recomendações </th> | |
125 | + <!-- <th id="aviso_numero_recomendacao_${cssClass}" class="topo2 indiceAvaliar0">Número</th> --> | |
126 | + <th id="aviso_recomendacao_${cssClass}" class="topo2 indiceAvaliar1"> Recomendação </th> | |
127 | 127 | <th id="aviso_quantidade_${cssClass}" class="topo2"> Quantidade</th> |
128 | 128 | <th id="aviso_linha_codigo_fonte_${cssClass}" class="topo2"> Linha(s) do código fonte</th> |
129 | 129 | </tr> |
... | ... | @@ -136,8 +136,8 @@ |
136 | 136 | <c:if test="${not item.error }"> |
137 | 137 | |
138 | 138 | <tr id="aviso_numero_recomendacao__${cssClass}_${item.checkPoint}"> |
139 | - <td headers="aviso_numero_recomendacao_${cssClass}" class="celula indiceAvaliar0"><a class="sublinharLink" href="http://emag.governoeletronico.gov.br/#r${item.checkPoint}">${item.checkPoint} (link para um novo sítio)</a></td> | |
140 | - <td headers="aviso_recomendacao_${cssClass}" class="celula indiceAvaliar1"> ${item.description}</td> | |
139 | + <!--<td headers="aviso_numero_recomendacao_${cssClass}" class="celula indiceAvaliar0"><a class="sublinharLink" href="http://emag.governoeletronico.gov.br/#r${item.checkPoint}">${item.checkPoint} (link para um novo sítio)</a></td>--> | |
140 | + <td headers="aviso_recomendacao_${cssClass}" class="celula indiceAvaliar1"><a class="sublinharLink" href="http://emag.governoeletronico.gov.br/#r${item.checkPoint}">${item.checkPoint} ${item.description} (link para um novo sítio)</a></td> | |
141 | 141 | <td headers="aviso_quantidade_${cssClass}" class="celula">${item.numberOfOccurrences}</td> |
142 | 142 | <td headers="aviso_linha_codigo_fonte_${cssClass}" class="celula"> |
143 | 143 | <c:choose> | ... | ... |