Commit 6a91c302ac401fd883c95d3a8c04df7f39db6699

Authored by Victor Costa
1 parent 2f87425c

Fix ranking columns

Showing 1 changed file with 2 additions and 2 deletions   Show diff stats
index.html
... ... @@ -298,16 +298,16 @@
298 298 <td class="abstract-text">Propostas</td>
299 299 <td class="votes-for"></td>
300 300 <td class="votes-against"></td>
  301 + <td class="views">Exibições</td>
301 302 <td class="support">Apoio</td>
302   - <td class="participation">Participação</td>
303 303 </tr>
304 304 {{#each proposals}}
305 305 <tr>
306 306 <td class="abstract-text"><div class="truncate"><p class="truncated">{{abstract}}</p></div></td>
307 307 <td class="votes-for value">{{votes_for}}</td>
308 308 <td class="votes-against value">{{votes_against}}</td>
  309 + <td class="views value">{{hits}}</td>
309 310 <td class="support value">{{#round effective_support}}{{/round}}</td>
310   - <td class="participation value">{{#round effective_participation}}{{/round}}</td>
311 311 </tr>
312 312 {{/each}}
313 313 </table>
... ...