Created
July 21, 2013 18:33
-
-
Save renatocantarino/6049453 to your computer and use it in GitHub Desktop.
View
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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