diff --git a/quackscape/users/templates/users/categories.html b/quackscape/users/templates/users/categories.html index db2cc5e..aad002c 100644 --- a/quackscape/users/templates/users/categories.html +++ b/quackscape/users/templates/users/categories.html @@ -1,27 +1,28 @@ {% extends "users/base.html" %} {% block content %}
-

- This page lists your categories, and the categories you were invited to. -

-

- Think of categories as a way to organize your VR projects. All content you - create will be associated with a category, and can be interacted with by - other content within the same category. -

+
+

+ This page lists your categories, and the categories you were invited to. +

+

+ Think of categories as a way to organize your VR projects. All content you + create will be associated with a category, and can be interacted with + (through teleports, etc.) by other content within the same category. +

+
-
+
-

Available media

+

Available categories

    {% for category in categories %}
  • - {{ category.title }} - {% if category.owner != request.user %} - (owner: {{ category.owner.email }}) - {% endif %} + {{ category.title }} + {% if request.user.is_superuser or category.owner != request.user %} + (owner: {{ category.owner.email }}) {% endif %}
  • {% endfor %}