48 lines
		
	
	
	
		
			1.3 KiB
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			48 lines
		
	
	
	
		
			1.3 KiB
		
	
	
	
		
			Text
		
	
	
	
	
	
| @model IEnumerable<turf_tasker.Models.LawnCareTip>
 | |
| 
 | |
| @{
 | |
|     ViewData["Title"] = "Index";
 | |
| }
 | |
| 
 | |
| <h1>Index</h1>
 | |
| 
 | |
| <p>
 | |
|     <a asp-action="Create" class="btn btn-primary">Create New Tip</a>
 | |
| </p>
 | |
| <table class="table">
 | |
|     <thead>
 | |
|         <tr>
 | |
|             <th>
 | |
|                 @Html.DisplayNameFor(model => model.Title)
 | |
|             </th>
 | |
|             <th>
 | |
|                 @Html.DisplayNameFor(model => model.Category)
 | |
|             </th>
 | |
|             <th>
 | |
|                 @Html.DisplayNameFor(model => model.Content)
 | |
|             </th>
 | |
|             <th></th>
 | |
|         </tr>
 | |
|     </thead>
 | |
|     <tbody>
 | |
| @foreach (var item in Model) {
 | |
|         <tr>
 | |
|             <td>
 | |
|                 @Html.DisplayFor(modelItem => item.Title)
 | |
|             </td>
 | |
|             <td>
 | |
|                 @Html.DisplayFor(modelItem => item.Category)
 | |
|             </td>
 | |
|             <td>
 | |
|                 @Html.DisplayFor(modelItem => item.Content)
 | |
|             </td>
 | |
|             <td class="col-actions">
 | |
|                 <div class="d-flex flex-wrap gap-2">
 | |
|                     <a asp-action="Edit" asp-route-id="@item.Id" class="btn btn-sm btn-outline-primary">Edit</a> 
 | |
|                     <a asp-action="Delete" asp-route-id="@item.Id" class="btn btn-sm btn-outline-danger">Delete</a>
 | |
|                 </div>
 | |
|             </td>
 | |
|         </tr>
 | |
| }
 | |
|     </tbody>
 | |
| </table>
 | 
