8 lines
308 B
Plaintext
8 lines
308 B
Plaintext
@model ProductDetailsModel
|
|
@if (Model.EmailAFriendEnabled)
|
|
{
|
|
<div class="email-a-friend">
|
|
<button type="button" class="button-2 email-a-friend-button" onclick="setLocation('@Url.RouteUrl("ProductEmailAFriend", new { productId = Model.Id })')">@T("Products.EmailAFriend")</button>
|
|
</div>
|
|
}
|