diff --git a/authentik/admin/forms/source.py b/authentik/admin/forms/source.py
index 5e5d04393..0a9b50065 100644
--- a/authentik/admin/forms/source.py
+++ b/authentik/admin/forms/source.py
@@ -14,4 +14,6 @@ SOURCE_SERIALIZER_FIELDS = [
"enabled",
"authentication_flow",
"enrollment_flow",
+ "verbose_name",
+ "verbose_name_plural",
]
diff --git a/authentik/admin/templates/administration/flow/list.html b/authentik/admin/templates/administration/flow/list.html
index 5bb2dfcd4..7711ceaae 100644
--- a/authentik/admin/templates/administration/flow/list.html
+++ b/authentik/admin/templates/administration/flow/list.html
@@ -53,7 +53,7 @@
{% for flow in object_list %}
-
+
{{ flow.slug }}
{{ flow.name }}
diff --git a/authentik/admin/templates/administration/provider/list.html b/authentik/admin/templates/administration/provider/list.html
index 572dc7caf..80d07472e 100644
--- a/authentik/admin/templates/administration/provider/list.html
+++ b/authentik/admin/templates/administration/provider/list.html
@@ -41,6 +41,17 @@
{% endfor %}
+
+
+
+
+
+
|