templates/components/add_item_button.html.twig line 1

Open in your IDE?
  1. {% set options = {
  2.     url: '#',
  3.     title: 'Добавить',
  4. }|merge(options|default({})) %}
  5. <div class="mb-4 d-flex justify-content-end">
  6.     <a class="btn btn-primary mb-3" href="{{ options.url }}">
  7.         <i class="fas fa-plus"></i>&nbsp; {{ options.title }}
  8.     </a>
  9. </div>