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