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