{% extends "layout/base.html" %} {% block title %}{{ metadata_type.name }} definition{% endblock %} {% block panel %} {% endblock %} {% block content %} {% from "layout/macros.html" import query_param_list, show_raw_document %}

metadata type of {{ products_using_it | length }} products
{{ metadata_type.definition['description'] }}

Usage

{% if products_using_it %}
{% for product in products_using_it %}
{{ product.name | product_link }}
{% endfor %}
{% else %} None {% endif %}

Definition

View RAW
{{ show_raw_document(metadata_doc) }}
{% endblock %}