-Use this form to create a user. Only existing supervisors can be added (create it first or add it later if it does not exist).
+Use this form to create a user. Only existing supervisors can be added (create them first and refresh this page or add them later if they do not exist).
{% if errors %}
{{errors}}
{% endif %}
diff --git a/rad/views.py b/rad/views.py
index 1fb41b44..19ca4f0e 100644
--- a/rad/views.py
+++ b/rad/views.py
@@ -556,11 +556,13 @@ class UserListTableView(CidManagerRequiredMixin, SingleTableMixin, FilterView):
# context["cid_user_groups"] = cid_user_groups
return context
+
class DeleteUserView(CidManagerRequiredMixin, DeleteView):
model = User
template_name: str = "confirm_delete.html"
success_url = reverse_lazy("accounts_list")
+
class UpdateUserView(CidManagerRequiredMixin, UpdateView):
model = User
fields = ["first_name", "last_name", "email"] # Keep listing whatever fields
diff --git a/rapids/templates/rapids/question_display_block.html b/rapids/templates/rapids/question_display_block.html
index c9e01a84..69335e41 100755
--- a/rapids/templates/rapids/question_display_block.html
+++ b/rapids/templates/rapids/question_display_block.html
@@ -9,7 +9,7 @@