You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
1.6 KiB
Plaintext
45 lines
1.6 KiB
Plaintext
@using GCI.PortalCondomino.Models
|
|
@using GCI.PortalCondomino.Helpers
|
|
@model CondominiosModel
|
|
@{
|
|
ViewBag.Title = "Informação do Condominio";
|
|
Layout = "~/Views/BackOffice/_Layout.cshtml";
|
|
}
|
|
|
|
@using (Html.BeginForm("Index", "Condominio", FormMethod.Get, null))
|
|
{
|
|
@Html.Hidden("commonholdid", @Model.CodCondominio, new { id = "commonholdid" })
|
|
}
|
|
|
|
<h3 class="oswald mt0 mb40 ac">@ViewBag.Title</h3>
|
|
|
|
<div class="container col-xs-12 form-horizontal">
|
|
<fieldset>
|
|
<label for="nome">Nome:</label>
|
|
<input type="text" name="nome" class="form-control" value="@(Model.Condominio.Key.Nome)" readonly />
|
|
</fieldset>
|
|
<fieldset>
|
|
<label for="morada">Morada:</label>
|
|
<textarea name="morada" class="form-control" rows="4" readonly>@(Model.Condominio.Morada)</textarea>
|
|
</fieldset>
|
|
<fieldset>
|
|
<label for="nif">Nº Contribuinte:</label>
|
|
<input type="text" name="nif" class="form-control" value="@(Model.Condominio.NIF)" readonly />
|
|
</fieldset>
|
|
<fieldset>
|
|
<label for="iban">IBAN:</label>
|
|
<input type="text" name="IBAN" class="form-control" value="@(Model.ContaBancaria.NIB)" readonly />
|
|
</fieldset>
|
|
<fieldset>
|
|
<label for="banco">Banco:</label>
|
|
<input type="text" name="banco" class="form-control" value="@(Model.ContaBancaria.NomeBanco)" readonly />
|
|
</fieldset>
|
|
</div>
|
|
|
|
@section footer {
|
|
@Html.Partial("_ContactosAdminPartial", Model.AdminData)
|
|
}
|
|
|
|
@section scripts {
|
|
<script src="~/Content/js/binder.js" type="text/javascript" nonce="@Html.ScriptNonce()"></script>
|
|
} |