You are here

app-credential-product-list.html.twig in Apigee Edge 8

Default theme implementation to display pruduct lists from an app credential.

Available variables:

  • content: List of API products included in the app crendetial.
  • attributes: HTML attributes for the containing element.
  • content_attributes: Same as attributes, except applied to the main content tag that appears in the template.
  • logged_in: Flag for authenticated user status. Will be true when the current user is a logged-in member.
  • is_admin: Flag for admin user status. Will be true when the current user is an administrator.

File

templates/app-credential-product-list.html.twig
View source
  1. {#
  2. /**
  3. * @file
  4. * Default theme implementation to display pruduct lists from an app credential.
  5. *
  6. * Available variables:
  7. * - content: List of API products included in the app crendetial.
  8. * - attributes: HTML attributes for the containing element.
  9. * - content_attributes: Same as attributes, except applied to the main
  10. * content tag that appears in the template.
  11. * - logged_in: Flag for authenticated user status. Will be true when the
  12. * current user is a logged-in member.
  13. * - is_admin: Flag for admin user status. Will be true when the current user
  14. * is an administrator.
  15. *
  16. * @see template_preprocess_app_credential_product_list()
  17. *
  18. * @ingroup themeable
  19. */
  20. #}
  21. <div {{ attributes }}>
  22. {{ content }}
  23. </div>