littleshop/LittleShop/Areas/Admin/Views/ShippingRates/Index.cshtml
SysAdmin bc708bb0a3 Fix missing CSRF tokens in all delete forms
- Added @Html.AntiForgeryToken() to Products delete form
- Added @Html.AntiForgeryToken() to Categories delete form
- Added @Html.AntiForgeryToken() to Users delete form
- Added @Html.AntiForgeryToken() to ShippingRates delete form
- Added @Html.AntiForgeryToken() to Product Variations delete form

This fixes the 400 Bad Request errors when trying to delete items
2025-09-24 18:02:17 +01:00

103 lines
4.3 KiB
Plaintext

@model IEnumerable<LittleShop.DTOs.ShippingRateDto>
@{
ViewData["Title"] = "Shipping Rates";
}
<div class="row mb-4">
<div class="col">
<h1><i class="fas fa-truck"></i> Shipping Rates</h1>
</div>
<div class="col-auto">
<a href="@Url.Action("Create")" class="btn btn-primary">
<i class="fas fa-plus"></i> Add Shipping Rate
</a>
</div>
</div>
<div class="card">
<div class="card-body">
@if (Model.Any())
{
<div class="table-responsive">
<table class="table table-striped">
<thead>
<tr>
<th>Name</th>
<th>Country</th>
<th>Weight Range (g)</th>
<th>Price</th>
<th>Delivery Days</th>
<th>Status</th>
<th>Actions</th>
</tr>
</thead>
<tbody>
@foreach (var rate in Model)
{
<tr>
<td>
<strong>@rate.Name</strong>
@if (!string.IsNullOrEmpty(rate.Description))
{
<br><small class="text-muted">@rate.Description</small>
}
</td>
<td>@rate.Country</td>
<td>@rate.MinWeight - @rate.MaxWeight</td>
<td>£@rate.Price</td>
<td>@rate.MinDeliveryDays - @rate.MaxDeliveryDays days</td>
<td>
@if (rate.IsActive)
{
<span class="badge bg-success">Active</span>
}
else
{
<span class="badge bg-danger">Inactive</span>
}
</td>
<td>
<div class="btn-group btn-group-sm">
<a href="@Url.Action("Edit", new { id = rate.Id })" class="btn btn-outline-primary">
<i class="fas fa-edit"></i>
</a>
<form method="post" action="@Url.Action("Delete", new { id = rate.Id })" class="d-inline"
onsubmit="return confirm('Are you sure you want to delete this shipping rate?')">
@Html.AntiForgeryToken()
<button type="submit" class="btn btn-outline-danger">
<i class="fas fa-trash"></i>
</button>
</form>
</div>
</td>
</tr>
}
</tbody>
</table>
</div>
}
else
{
<div class="text-center py-4">
<i class="fas fa-truck fa-3x text-muted mb-3"></i>
<p class="text-muted">No shipping rates configured. <a href="@Url.Action("Create")">Add your first shipping rate</a>.</p>
</div>
}
</div>
</div>
<div class="card mt-4">
<div class="card-header">
<h5><i class="fas fa-info-circle"></i> Shipping Information</h5>
</div>
<div class="card-body">
<p>Configure shipping rates based on weight ranges and destination countries.</p>
<ul>
<li>Weight ranges are in grams</li>
<li>Rates are automatically calculated based on order weight</li>
<li>The cheapest applicable rate is selected for customers</li>
<li>Set rates as inactive to temporarily disable them</li>
</ul>
</div>
</div>