templates/components/campaign/bookRow.html.twig line 1

Open in your IDE?
  1. {% set rowId = random_string() %}
  2. <tr class="cart-row {{ rowId }}">
  3.     <td><span>{{ key }}.</span></td>
  4.     <td>
  5.      {% if item.author %}
  6.     <a href=" {{ item.author|default }}" target="_blank">
  7.     {% endif %}
  8.     {{ item.title|default }}
  9.     {% if item.author %}
  10.     </a>
  11.     {% endif %}
  12.    </td>
  13.    
  14.     
  15.     <td class="mobile-hide">{{ item.sku|default }}</td>
  16.     <td class="text-right">{{ item.net|default|price }}</td>
  17.     <td class="text-right">{{ item.tax|default|price }}</td>
  18.     {% if campaign.isActive and (userIsNotStudent or campaign.user.id == activeUserId or app.user == null) %}
  19.         <!-- <td>{% include "@Public/common/cart/_action_button.html.twig" with {item: item, rowId: rowId} only %}</td> -->
  20.     {% endif %}
  21. </tr>