{% extends "base.html" %} {% block title %}Glossary{% endblock %} {% block content %}

Glossary

{% if glossary.terms %}

Business terms

{% for t in glossary.terms %}
{{ t.name }}{% if t.synonyms %} ({{ t.synonyms|join(", ") }}){% endif %}
{{ t.definition or "" }}
{% endfor %}
{% endif %} {% if glossary.domains %}

Domains

{% for d in glossary.domains %} {% endfor %}
NameBase typeValuesDefinition
{{ d.name }}{{ d.base_type }} {% if d.enum %}{{ d.enum|join(", ") }}{% elif d.value_set %}→ {{ d.value_set }}{% else %}—{% endif %} {{ d.definition or "" }}
{% endif %} {% if glossary.code_sets %}

Code sets

{% for c in glossary.code_sets %}

{{ c.name }}

{% if c.definition %}

{{ c.definition }}

{% endif %}

{{ c.members|join(", ") }}

{% endfor %}
{% endif %} {% if not glossary.terms and not glossary.domains and not glossary.code_sets %}

No glossary terms, domains, or code sets defined yet.

{% endif %} {% endblock %}