This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
@model Infrastructure.Application.Models.EditSettingModel
@if (Model.Type.HasValue)
{
var template = Model.Type.ToString();
<div class="form-group row">
<label class="col-sm-2 col-form-label required" for="@Html.IdFor(o=>o.Value)">@Html.DisplayNameFor(o => o.Value):</label>
<div class="col-sm-6">
@Html.EditorFor(o => o.Value, template)
@Html.ValidationMessageFor(o => o.Value)
</div>
<div class="col-sm-2">
}