{% extends "default.html" %} {% block content %}

User titles

Drama titles are text-based, cosmetic achievements that can be displayed next to your username across the Drama platform. Titles may be earned through various activities on Drama: earning rep, inviting friends, helping staff, and more.

Article guide:

Unlockable titles

These titles automatically unlock through different kinds of activity on Drama.

{% for t in titles if t.kind==1 %} {% endfor %}
Title Description
{% if v %}{{v.username}}{% else %}[name]{% endif %}{{t.rendered | safe}} {{t.requirement_string}}

Supporter titles

These titles can be obtained by financially supporting Drama.

{% for t in titles if t.kind==2 %} {% endfor %}
Title Description
{% if v %}{{v.username}}{% else %}[name]{% endif %}{{t.rendered | safe}} {{t.requirement_string}}

Granted titles

These titles can be granted by Drama staff.

{% for t in titles if t.kind==3 %} {% endfor %}
Title Description
{% if v %}{{v.username}}{% else %}[name]{% endif %}{{t.rendered | safe}} {{t.requirement_string}}

Unobtainable titles

There is no way to acquire these titles if you don't already have them.

{% for t in titles if t.kind==4 %} {% endfor %}
Title Description
{% if v %}{{v.username}}{% else %}[name]{% endif %}{{t.rendered | safe}} {{t.requirement_string}}
{% endblock %}