description.html.twig

Contains the text of the tabledrag_example explanation page

File

modules/tabledrag_example/templates/description.html.twig

View source
  1. {#
  2. /**
  3. * @file
  4. * Contains the text of the tabledrag_example explanation page
  5. */
  6. #}
  7. {% set simple_rows = path('tabledrag_example.simple_form') %}
  8. {% set nested = path('tabledrag_example.parent_form') %}
  9. {% set roots_and_leaves = path('tabledrag_example.root_leaf_form') %}
  10. {% set reset_form = path('tabledrag_example.reset_form') %}
  11. {% trans %}
  12. <p>Below are examples of Drupal 8's table element with 'tabledrag' functionality.</p>
  13. <ol>
  14. <li><a href={{ simple_rows }}>Simple Rows</a></li>
  15. <li><a href={{ nested }}>Nested</a></li>
  16. <li><a href={{ roots_and_leaves }}>Roots and Leaves</a></li>
  17. </ol>
  18. <p><a href={{ reset_form }}>Reset Tablesort Sample Data</a></p>
  19. {% endtrans %}