{% if username %}
{% set arg = username %}
{% elif id %}
{% set arg = id %}
{% else %}
{{ throw(message="pronouns: no arg set") }}
{% endif %}
{% set data = load_data(url="https://pronouns.cc/api/v1/users/" ~ arg, format="json")%}
{% for noun in data.pronouns %}
{{noun.status}}: {{noun.pronouns}}
{% endfor %}