demo20230512/Areas/admin/Views/ParameterDatabase/Detail.cshtml

33 lines
632 B
Plaintext
Raw Normal View History

2023-05-12 10:20:28 +08:00
@using Resources
@model Weee.Models.Paramemter.SimaproParameter
@{
ViewBag.Title = Resource.StaticLabelSimaproParameter;
Layout = "~/Areas/Admin/Views/Shared/_AdminLayout.cshtml";
}
<h2>@Resource.StaticLabelGlobal_Detail</h2>
<div>
<h4>@Model.DisplayName</h4>
<hr />
<dl class="dl-horizontal">
<dt>Encoding:</dt>
<dd>@Model.Encoding</dd>
<dt>kg CO2 equal:</dt>
<dd>@Model.Value</dd>
<dt>Unit:</dt>
<dd>@Model.Unit</dd>
<dt>Remark:</dt>
<dd>@Model.Remark</dd>
<dt>Database:</dt>
<dd>@Model.Database</dd>
</dl>
</div>