Files
LeafWeb/WebCms/Views/Shared/EditorTemplates/Decimal.cshtml
T
poprhythm 8452a9cce0 Add registration workflow
Update unobtrusive Validation
2020-01-10 14:52:11 -05:00

15 lines
387 B
Plaintext

@using System.Globalization
@model decimal?
@{
Layout = "_FieldLayout.cshtml";
}
<div class="input-group">
<span class="input-group-append">
&euro;@Html.TextBox(
"",
Model == null
? ""
: string.Format(CultureInfo.CurrentCulture, "{0:F2}", ViewData.ModelMetadata.Model))
</span>
</div>