ins_del_and_or_cell.twig 1.1 KB

12345678910111213141516171819202122232425262728
  1. <td class="value text-nowrap">
  2. <table class="table table-borderless table-sm">
  3. <tr>
  4. <td class="value text-nowrap p-0">
  5. <small>{% trans 'Ins:' %}</small>
  6. <input type="checkbox" name="criteriaRowInsert[{{ row_index }}]" aria-label="{% trans 'Insert' %}">
  7. </td>
  8. <td class="value p-0">
  9. <strong>{% trans 'And:' %}</strong>
  10. </td>
  11. <td class="p-0">
  12. <input type="radio" name="criteriaAndOrRow[{{ row_index }}]" value="and"{{ checked_options.and ? ' checked' }} aria-label="{% trans 'And' %}">
  13. </td>
  14. </tr>
  15. <tr>
  16. <td class="value text-nowrap p-0">
  17. <small>{% trans 'Del:' %}</small>
  18. <input type="checkbox" name="criteriaRowDelete[{{ row_index }}]" aria-label="{% trans 'Delete' %}">
  19. </td>
  20. <td class="value p-0">
  21. <strong>{% trans 'Or:' %}</strong>
  22. </td>
  23. <td class="p-0">
  24. <input type="radio" name="criteriaAndOrRow[{{ row_index }}]" value="or"{{ checked_options.or ? ' checked' }} aria-label="{% trans 'Or' %}">
  25. </td>
  26. </tr>
  27. </table>
  28. </td>