entity-add-list.html.twig
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
template_preprocess_entity_add_list()
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/ stable9/ templates/ content-edit/ entity-add-list.html.twig  
View 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 %}
 
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.