Files
LeafWeb/WebCms/Views/Shared/DisplayTemplates/PriorityIcon.cshtml
T

13 lines
385 B
Plaintext

@using LeafWeb.Core.Entities
@model Priority
@{
switch (Model)
{
case Priority.Normal:<span class="fa fa-square-o"></span>break;
case Priority.Low:<span class="fa fa-caret-square-o-down"></span>break;
case Priority.High:<span class="fa fa-caret-square-o-up"></span>break;
default:
throw new ArgumentOutOfRangeException();
}
}