diff --git a/core/modules/system/templates/table.html.twig b/core/modules/system/templates/table.html.twig index 443657014f61b230df6709a88f771232e9d61aa8..cfcb0bf976c0257a7b568e529de15f02e7f94689 100644 --- a/core/modules/system/templates/table.html.twig +++ b/core/modules/system/templates/table.html.twig @@ -30,6 +30,8 @@ * - content: The string to display in the table cell. * - active_table_sort: A boolean indicating whether the cell is the active table sort. + * - header: Boolean indicating whether the cell should be rendered as a + * header (<th>) or not (<td>). * - footer: Table footer rows, in the same format as the rows variable. * - empty: The message to display in an extra row if table does not have * any rows. diff --git a/core/profiles/demo_umami/themes/umami/templates/classy/dataset/table.html.twig b/core/profiles/demo_umami/themes/umami/templates/classy/dataset/table.html.twig index 2afa9c155642349eea89066b17ad245044558b80..cdfe0bff7e73bec5e90c6af49d48761931237f63 100644 --- a/core/profiles/demo_umami/themes/umami/templates/classy/dataset/table.html.twig +++ b/core/profiles/demo_umami/themes/umami/templates/classy/dataset/table.html.twig @@ -30,6 +30,8 @@ * - content: The string to display in the table cell. * - active_table_sort: A boolean indicating whether the cell is the active table sort. + * - header: Boolean indicating whether the cell should be rendered as a + * header (<th>) or not (<td>). * - footer: Table footer rows, in the same format as the rows variable. * - empty: The message to display in an extra row if table does not have * any rows. diff --git a/core/themes/claro/templates/classy/dataset/table.html.twig b/core/themes/claro/templates/classy/dataset/table.html.twig index 2afa9c155642349eea89066b17ad245044558b80..cdfe0bff7e73bec5e90c6af49d48761931237f63 100644 --- a/core/themes/claro/templates/classy/dataset/table.html.twig +++ b/core/themes/claro/templates/classy/dataset/table.html.twig @@ -30,6 +30,8 @@ * - content: The string to display in the table cell. * - active_table_sort: A boolean indicating whether the cell is the active table sort. + * - header: Boolean indicating whether the cell should be rendered as a + * header (<th>) or not (<td>). * - footer: Table footer rows, in the same format as the rows variable. * - empty: The message to display in an extra row if table does not have * any rows. diff --git a/core/themes/stable9/templates/dataset/table.html.twig b/core/themes/stable9/templates/dataset/table.html.twig index 231ada2b38b8281eb6a31a0a08588fef69aa2063..d9e12ff284f81a4543ab5dfae6a7dd2006ee7eb4 100644 --- a/core/themes/stable9/templates/dataset/table.html.twig +++ b/core/themes/stable9/templates/dataset/table.html.twig @@ -30,6 +30,8 @@ * - content: The string to display in the table cell. * - active_table_sort: A boolean indicating whether the cell is the active table sort. + * - header: Boolean indicating whether the cell should be rendered as a + * header (<th>) or not (<td>). * - footer: Table footer rows, in the same format as the rows variable. * - empty: The message to display in an extra row if table does not have * any rows. diff --git a/core/themes/starterkit_theme/templates/dataset/table.html.twig b/core/themes/starterkit_theme/templates/dataset/table.html.twig index 2afa9c155642349eea89066b17ad245044558b80..cdfe0bff7e73bec5e90c6af49d48761931237f63 100644 --- a/core/themes/starterkit_theme/templates/dataset/table.html.twig +++ b/core/themes/starterkit_theme/templates/dataset/table.html.twig @@ -30,6 +30,8 @@ * - content: The string to display in the table cell. * - active_table_sort: A boolean indicating whether the cell is the active table sort. + * - header: Boolean indicating whether the cell should be rendered as a + * header (<th>) or not (<td>). * - footer: Table footer rows, in the same format as the rows variable. * - empty: The message to display in an extra row if table does not have * any rows.