entity-add-list.html.twig in Drupal 10
Same filename in this branch
- 10 core/themes/claro/templates/entity-add-list.html.twig
- 10 core/themes/seven/templates/entity-add-list.html.twig
- 10 core/modules/system/templates/entity-add-list.html.twig
- 10 core/themes/stable9/templates/content-edit/entity-add-list.html.twig
- 10 core/themes/stable/templates/content-edit/entity-add-list.html.twig
Same filename and directory in other branches
Theme override to present a list of available bundles.
Available variables:
- bundles: A list of bundles, each with the following properties:
- label: Bundle label.
- description: Bundle description.
- add_link: Link to create an entity of this bundle.
- add_bundle_message: The message shown when there are no bundles. Only available if the entity type uses bundle entities.
See also
1 theme call to entity-add-list.html.twig
- EntityController::addPage in core/
lib/ Drupal/ Core/ Entity/ Controller/ EntityController.php - Displays add links for the available bundles.
File
core/themes/stable/templates/content-edit/entity-add-list.html.twigView source
- {#
- /**
- * @file
- * Theme override to present a list of available bundles.
- *
- * Available variables:
- * - bundles: A list of bundles, each with the following properties:
- * - label: Bundle label.
- * - description: Bundle description.
- * - add_link: Link to create an entity of this bundle.
- * - add_bundle_message: The message shown when there are no bundles. Only
- * available if the entity type uses bundle entities.
- *
- * @see template_preprocess_entity_add_list()
- */
- #}
- {% if bundles is not empty %}
- <dl>
- {% for bundle in bundles %}
- <dt>{{ bundle.add_link }}</dt>
- <dd>{{ bundle.description }}</dd>
- {% endfor %}
- </dl>
- {% elseif add_bundle_message is not empty %}
- <p>
- {{ add_bundle_message }}
- </p>
- {% endif %}