@model GarageBandz.Domain.State

Dashboard Gestione Regioni

Da questa pagina puoi creare o modificare le regioni
@using(Html.BeginForm("SaveState", "Place", FormMethod.Post)) {
@Html.TextBoxFor(x => x.Name, new { @class="form-control" })
@Html.DropDownListFor(x => x.Country.Id, GarageBandz.Web.Helpers.Metadata.Countries(), "Seleziona...", new { @class = "form-control" })
@Html.HiddenFor(x => x.Country.Id) @Html.HiddenFor(x => x.Id) }

Counties associate
@if (Model.Counties != null) { foreach (var county in Model.Counties) { } } else { }
Nome Azioni
@county.Name