You are here

content-kanban-column.html.twig in Content Planner 8

<td id="{{ column_id }}" data-state_id="{{ state_id }}" class="kanban-column droppable">{{ column }}
  {% if entities %}
    {% for entity in entities %}
      <div class="content-kanban-entry">
        {{ entity }}
      </div>
    {% endfor %}

  {% endif %}
</td>

File

modules/content_kanban/templates/content-kanban-column.html.twig
View source
  1. <td id="{{ column_id }}" data-state_id="{{ state_id }}" class="kanban-column droppable">{{ column }}
  2. {% if entities %}
  3. {% for entity in entities %}
  4. <div class="content-kanban-entry">
  5. {{ entity }}
  6. </div>
  7. {% endfor %}
  8. {% endif %}
  9. </td>