Files
MileageTraker/Web/Views/City/Index.cshtml
T
2014-05-21 10:55:24 -04:00

29 lines
518 B
Plaintext

@model Dictionary<string,List<string>>
@{
ViewBag.Title = "Cities by County";
}
@{ Html.RenderPartial("BackToLogs"); }
@Html.Partial("_StatusMessage")
<h2>@ViewBag.Title</h2>
<div>
@foreach (var countyCities in Model)
{
<div>
<h3>@countyCities.Key</h3>
<p>
@foreach (var city in countyCities.Value)
{
<span class="label">
@city
</span>
}
@Html.ActionLink("Add New City", "Create", new {County=countyCities.Key}, new { @class = "btn btn-small" })
</p>
</div>
}
</div>