Files
Aaru.Server/DiscImageChef.Server/Areas/Admin/Views/CompactDiscOffsets/Edit.cshtml

74 lines
3.4 KiB
Plaintext
Raw Normal View History

2019-11-07 22:43:37 +00:00
@model CompactDiscOffset
@{
2019-11-08 00:23:14 +00:00
Layout = "~/Areas/Admin/Views/Shared/_Layout.cshtml";
ViewBag.Title = "DiscImageChef";
}
@{
// /***************************************************************************
// The Disc Image Chef
// ----------------------------------------------------------------------------
//
// Filename : Edit.cshtml
// Author(s) : Natalia Portillo <claunia@claunia.com>
//
// Component : DiscImageChef Server.
//
// --[ License ] --------------------------------------------------------------
//
// This library is free software; you can redistribute it and/or modify
// it under the terms of the GNU Lesser General Public License as
// published by the Free Software Foundation; either version 2.1 of the
// License, or (at your option) any later version.
//
// This library is distributed in the hope that it will be useful, but
// WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
// Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public
// License along with this library; if not, see <http://www.gnu.org/licenses/>.
//
// ----------------------------------------------------------------------------
// Copyright © 2011-2019 Natalia Portillo
// ****************************************************************************/
2019-11-07 22:43:37 +00:00
}
<h4>Compact disc offset</h4>
2019-11-07 22:43:37 +00:00
<hr />
<div class="row">
<div class="col-md-4">
<form asp-action="Edit">
<div asp-validation-summary="ModelOnly" class="text-danger"></div>
<input type="hidden" asp-for="Id" />
<div class="form-group">
<label asp-for="Manufacturer" class="control-label"></label>
<input asp-for="Manufacturer" class="form-control" />
<span asp-validation-for="Manufacturer" class="text-danger"></span>
</div>
<div class="form-group">
<label asp-for="Model" class="control-label"></label>
<input asp-for="Model" class="form-control" />
<span asp-validation-for="Model" class="text-danger"></span>
</div>
<div class="form-group">
<label asp-for="Offset" class="control-label"></label>
<input asp-for="Offset" class="form-control" />
<span asp-validation-for="Offset" class="text-danger"></span>
</div>
<div class="form-group">
<label asp-for="Submissions" class="control-label"></label>
<input asp-for="Submissions" class="form-control" />
<span asp-validation-for="Submissions" class="text-danger"></span>
</div>
<div class="form-group">
<label asp-for="Agreement" class="control-label"></label>
<input asp-for="Agreement" class="form-control" />
<span asp-validation-for="Agreement" class="text-danger"></span>
</div>
<div class="form-group">
2019-11-08 20:30:13 +00:00
<input class="btn btn-primary" type="submit" value="Save" />
2019-11-08 00:32:48 +00:00
<a asp-action="Index" class="btn btn-secondary">Back to List</a>
2019-11-07 22:43:37 +00:00
</div>
</form>
</div>
2019-11-08 20:30:13 +00:00
</div>