Skip to content

Instantly share code, notes, and snippets.

@renatocantarino
Created July 21, 2013 18:33
Show Gist options
  • Save renatocantarino/6049453 to your computer and use it in GitHub Desktop.
Save renatocantarino/6049453 to your computer and use it in GitHub Desktop.
View
@model IEnumerable<OpenMVC.Models.AcidentesDeTrabalho>
@{
ViewBag.Title = "Index";
}
<table>
<tr class="editor-label">
<td >
Uf
</td>
<td>
Município
</td>
<td>
Qnt. de óbitos
</td>
</tr>
@foreach (var item in Model)
{
<tr>
<td>
@item.municipio.uf
</td>
<td>
@item.municipio.nome
</td>
<td>
@item.quantidade.obitos
</td>
</tr>
}
</table>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment