{% extends "base.html" %} {% block title %}About > Words{% endblock %} {% block description %}These are the words you can use for me{% endblock %} {% block content %}

About > Words

Here's a (non-exhaustive) list of words that I'm okay (or not) for people to use to refer to me.

This list is automatically generated from my profile on pronouns.page

Names

    {% for word in card.names %}
  • {% if word.opinion.is_negative() %} {{ word.opinion.emoji() }} {{ word.value }}: {{ word.opinion }} {% else %} {{ word.opinion.emoji() }} {{ word.value }}: {{ word.opinion }} {% endif %}
  • {% endfor %}

Pronouns

    {% for word in card.pronouns %}
  • {% if word.opinion.is_negative() %} {{ word.opinion.emoji() }} {{ word.value }}: {{ word.opinion }} {% else %} {{ word.opinion.emoji() }} {{ word.value }}: {{ word.opinion }} {% endif %}
  • {% endfor %}

Other words

{% for wordlist in card.words %}
    {% for word in wordlist.values %}
  • {% if word.opinion.is_negative() %} {{ word.opinion.emoji() }} {{ word.value }}: {{ word.opinion }} {% else %} {{ word.opinion.emoji() }} {{ word.value }}: {{ word.opinion }} {% endif %}
  • {% endfor %}
{% endfor %}
{% endblock %}