{#
* Plugin Name : SalesRestrictions4
*
* Copyright (C) BraTech Co., Ltd. All Rights Reserved.
* http://www.bratech.co.jp/
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
#}
<style>
.sales-restrictions {
background: #f8f8f8;
border: 1px solid #d9d9d9;
margin: 20px 0;
padding: 16px;
}
.sales-restrictions span {
color: #de5d50;
font-weight: bold;
}
</style>
<div class="sales-restrictions">
{% if is_granted('ROLE_USER') == false %}
<span>登録ユーザー様限定商品です</span><br />
会員の方はログイン後再度ご確認ください。<br />
非会員の方は会員登録頂き再度ご確認ください。<br />
{% else %}
登録ユーザー様限定商品です
{% endif %}
</div>