33 lines
632 B
Plaintext
33 lines
632 B
Plaintext
@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>
|
|
|