Files
LeafWeb/WebCms/Views/Shared/DisplayTemplates/Status.cshtml
T
2016-12-16 09:17:42 -05:00

12 lines
258 B
Plaintext

@model string
@{
Layout = "~/Views/Shared/DisplayTemplates/_FieldLayout.cshtml";
}
@if (Model == null)
{
@Html.Encode(ViewData.ModelMetadata.NullDisplayText)
}
else
{
<span class="status status-@Model.ToFirstLower()">@Html.Encode(Model)</span>
}