{% extends "controlpanel/layout.html" %} {% block title %}Manage user tags{% endblock %} {% block body_class %}plain-page frontpage admin {{ body_class }}{% endblock %} {% block subbreadcrumbs %}{% set navigation.sub = "tags" %}{% endblock %} {% block body %}

Manage user tags

Order tags by dragging them upwards or downwards. Tags are evaluated from top to bottom, so for a given setting, the first tag a user has that that setting is overridden for is used.

For example: a user has tags admin and teacher, and admin is ordered higher than teacher. Setting A is overridden for both tags; setting B for neither; setting C is only overridden for teacher. For this user, setting A has the value for the admin tag; setting B has the global value; and setting C has the value for teacher.

Note that user tags (e.g. user:name@example.com) always have precedence.

The admin tag is always the first in the list, and the global configuration always has the least priority.

  1. admin (settings)
  2. {% for tag in tags %}{% if tag.tag != "admin" %}
  3. Remove tag from all users {% if tag.tag %} {{ tag.tag }} (settings) {% endif %}
  4. {% endif %}{% endfor %}
  5. (global configuration)
{% endblock %}