New style partially complete

This commit is contained in:
2012-12-12 15:32:03 -05:00
parent 86ee45c184
commit 14d8054f22
85 changed files with 10261 additions and 1081 deletions
+10 -3
View File
@@ -4,8 +4,8 @@
@if (Model.Any())
{
<h4>Recent Logs for @ViewData["employeeName"]</h4>
<table>
<h5>Recent Logs for @ViewData["employeeName"]</h5>
<table class="table">
<thead>
<tr>
<th>
@@ -43,5 +43,12 @@
}
else
{
<h4>Mileage history not found for for "@ViewData["employeeName"]"</h4>
if (!string.IsNullOrEmpty(ViewData["employeeName"].ToString()))
{
<h5>Mileage history not found for employee "@ViewData["employeeName"]"</h5>
}
else
{
<h5>Please enter employee name</h5>
}
}