36 lines
		
	
	
	
		
			939 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			36 lines
		
	
	
	
		
			939 B
		
	
	
	
		
			Text
		
	
	
	
	
	
| @model turf_tasker.Models.LawnCareTip
 | |
| 
 | |
| @{
 | |
|     ViewData["Title"] = "Details";
 | |
| }
 | |
| 
 | |
| <h1>Details</h1>
 | |
| 
 | |
| <div>
 | |
|     <h4>LawnCareTip</h4>
 | |
|     <hr />
 | |
|     <dl class="row">
 | |
|         <dt class = "col-sm-2">
 | |
|             @Html.DisplayNameFor(model => model.Title)
 | |
|         </dt>
 | |
|         <dd class = "col-sm-10">
 | |
|             @Html.DisplayFor(model => model.Title)
 | |
|         </dd>
 | |
|         <dt class = "col-sm-2">
 | |
|             @Html.DisplayNameFor(model => model.Category)
 | |
|         </dt>
 | |
|         <dd class = "col-sm-10">
 | |
|             @Html.DisplayFor(model => model.Category)
 | |
|         </dd>
 | |
|         <dt class = "col-sm-2">
 | |
|             @Html.DisplayNameFor(model => model.Content)
 | |
|         </dt>
 | |
|         <dd class = "col-sm-10">
 | |
|             @Html.DisplayFor(model => model.Content)
 | |
|         </dd>
 | |
|     </dl>
 | |
| </div>
 | |
| <div>
 | |
|     <a asp-action="Edit" asp-route-id="@Model?.Id">Edit</a> |
 | |
|     <a asp-action="Index">Back to List</a>
 | |
| </div>
 | 
