You are here

content-kanban.html.twig in Content Planner 8

<div class="content-kanban">

  <h2 id="{{ kanban_id }}">{{ kanban_label }}</h2>

  {{ filter_form }}

  <table class="kanban-columns kanban-{{ columns|length }}-columns">
    <thead>
      <tr>
        {% for header in headers %}
          <th>{{ header }}</th>
        {% endfor %}
      </tr>
    </thead>
    <tbody>
      <tr>
        {% for column in columns %}
          {{ column }}
        {% endfor %}
      </tr>
    </tbody>
  </table>
</div>

File

modules/content_kanban/templates/content-kanban.html.twig
View source
  1. <div class="content-kanban">
  2. <h2 id="{{ kanban_id }}">{{ kanban_label }}</h2>
  3. {{ filter_form }}
  4. <table class="kanban-columns kanban-{{ columns|length }}-columns">
  5. <thead>
  6. <tr>
  7. {% for header in headers %}
  8. <th>{{ header }}</th>
  9. {% endfor %}
  10. </tr>
  11. </thead>
  12. <tbody>
  13. <tr>
  14. {% for column in columns %}
  15. {{ column }}
  16. {% endfor %}
  17. </tr>
  18. </tbody>
  19. </table>
  20. </div>