Add user search

This commit is contained in:
2013-01-05 20:56:27 -05:00
parent f9844d0f38
commit d5d58c1649
7 changed files with 63 additions and 4 deletions
+12
View File
@@ -0,0 +1,12 @@
@using MileageTraker.Web.Utility
@model DateTime
@if (!Model.IsSqlMinValue())
{
@Html.Encode(Model)
<span class="muted">(@Html.Encode((DateTime.Now - Model).ToVerboseStringHistoric()))</span>
}
else
{
<span class='label label-info'>No Activity</span>
}