Fix missing fields in admin pages.

This commit is contained in:
2019-05-19 19:16:19 +01:00
parent b464d2fb81
commit f155cf7ce2
5 changed files with 16 additions and 6 deletions

View File

@@ -45,6 +45,16 @@
<div asp-validation-summary="ModelOnly"
class="text-danger">
</div>
<div class="form-group">
<label asp-for="Name"
class="control-label">
</label>
<input asp-for="Name"
class="form-control" />
<span asp-validation-for="Name"
class="text-danger">
</span>
</div>
<div class="form-group">
<label asp-for="Founded"
class="control-label">
@@ -96,7 +106,7 @@
</span>
</div>
<div class="form-group">
<label asp-for="SoldToId"
<label asp-for="SoldTo"
class="control-label">
</label>
<select asp-for="SoldToId"
@@ -145,7 +155,7 @@
</span>
</div>
<div class="form-group">
<label asp-for="CountryId"
<label asp-for="Country"
class="control-label">
</label>
<select asp-for="CountryId"

View File

@@ -46,7 +46,7 @@
class="text-danger">
</div>
<div class="form-group">
<label asp-for="CompanyId"
<label asp-for="Company"
class="control-label">
</label>
<select asp-for="CompanyId"

View File

@@ -47,7 +47,7 @@
class="text-danger">
</div>
<div class="form-group">
<label asp-for="MachineId"
<label asp-for="Machine"
class="control-label">
</label>
<select asp-for="MachineId"

View File

@@ -47,7 +47,7 @@
class="text-danger">
</div>
<div class="form-group">
<label asp-for="MachineId"
<label asp-for="Machine"
class="control-label">
</label>
<select asp-for="MachineId"

View File

@@ -2,7 +2,7 @@
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>netcoreapp2.2</TargetFramework>
<Version>3.0.99.496</Version>
<Version>3.0.99.497</Version>
<Company>Canary Islands Computer Museum</Company>
<Copyright>Copyright © 2003-2018 Natalia Portillo</Copyright>
<Product>Canary Islands Computer Museum Website</Product>