Files
Disco/Disco.Web/Areas/Public/Views/Public/Index.cshtml
T
Gary Sharp 20263905f9 Feature: FontAwesome Added
FontAwesome 4.0.3.1 Added, and an initial pass to replace bitmap icons.
2013-12-24 16:22:26 +11:00

41 lines
2.2 KiB
Plaintext

@{
ViewBag.Title = Html.ToBreadcrumb("Public Reports", null);
}
<table id="pageMenu">
<tr>
<td style="width: 50%">
<div class="pageMenuArea">
<h2>Technician Held Devices for Users</h2>
<i class="fa fa-book"></i>@Html.ActionLinkClass("Report", MVC.Public.UserHeldDevices.Index(), "report")
<div class="pageMenuBlurb">
Display users involved in current jobs where the user's device is held by the technicians.
Also displays users which should report to the technicians to collect their device
which is ready to be returned to them.
</div>
<i class="fa fa-desktop"></i>@Html.ActionLinkClass("Noticeboard", MVC.Public.UserHeldDevices.Noticeboard(), "noticeboard")
<div class="pageMenuBlurb">
Display a full-screen active noticeboard screen which lists users involved in current
jobs where the user's device is held by the technicians. Also displays users which
should report to the technicians to collect their device which is ready to be returned
to them.
</div>
</div>
</td>
<td style="width: 50%">
<div class="pageMenuArea">
<h2>Technician Held Devices</h2>
<i class="fa fa-book"></i>@Html.ActionLinkClass("Report", MVC.Public.HeldDevices.Index(), "report")
<div class="pageMenuBlurb">
Display devices involved in current jobs where the device is held by the technicians.
Also displays devices which are ready to be collected.
</div>
<i class="fa fa-desktop"></i>@Html.ActionLinkClass("Noticeboard", MVC.Public.HeldDevices.Noticeboard(), "noticeboard")
<div class="pageMenuBlurb">
Display a full-screen active noticeboard screen which lists devices involved in current
jobs where the device is held by the technicians. Also displays devices which are ready to be collected.
</div>
</div>
</td>
</tr>
</table>