10 lines
207 B
Plaintext
10 lines
207 B
Plaintext
@using MileageTraker.Web.ViewModels
|
|
@model LogPartialDetails
|
|
@{
|
|
Layout = null;
|
|
}
|
|
<h5>Previous Log</h5>
|
|
@Html.DisplayForModel()
|
|
<p>
|
|
@Html.ActionLink("Details", "Details", new { id = Model.LogId })
|
|
</p> |