{% set rowId = random_string() %}
<tr class="cart-row {{ rowId }}">
<td><span>{{ key }}.</span></td>
<td>
{% if item.author %}
<a href=" {{ item.author|default }}" target="_blank">
{% endif %}
{{ item.title|default }}
{% if item.author %}
</a>
{% endif %}
</td>
<td class="mobile-hide">{{ item.sku|default }}</td>
<td class="text-right">{{ item.net|default|price }}</td>
<td class="text-right">{{ item.tax|default|price }}</td>
{% if campaign.isActive and (userIsNotStudent or campaign.user.id == activeUserId or app.user == null) %}
<!-- <td>{% include "@Public/common/cart/_action_button.html.twig" with {item: item, rowId: rowId} only %}</td> -->
{% endif %}
</tr>