27 lines
477 B
Plaintext
27 lines
477 B
Plaintext
@model Dictionary<string,List<string>>
|
|
|
|
@{
|
|
ViewBag.Title = "Cities by County";
|
|
}
|
|
|
|
@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> |