diff --git a/uffd/role/templates/role_list.html b/uffd/role/templates/role_list.html
index 4cfcb60d745323e5d11a1f6e1d09fe363e4ff08e..007ddf387db50f98572201800448e147d790ebd9 100644
--- a/uffd/role/templates/role_list.html
+++ b/uffd/role/templates/role_list.html
@@ -6,6 +6,7 @@
 		<table class="table table-striped">
 			<thead>
 				<tr>
+					<th scope="col">id</th>
 					<th scope="col">name</th>
 					<th scope="col">description</th>
 					<th scope="col">
@@ -20,6 +21,9 @@
 			<tbody>
 				{% for role in roles|sort(attribute="name") %}
 				<tr id="role-{{ role.id }}">
+					<td>
+						{{ role.id }}
+					</td>
 					<th scope="row">
 						{{ role.name }}
 					</th>
diff --git a/uffd/user/templates/user_list.html b/uffd/user/templates/user_list.html
index 85da86dbc195990dd783e539118ba582219ab08f..21d437c38749670ebb7063f9996acb1637d32d12 100644
--- a/uffd/user/templates/user_list.html
+++ b/uffd/user/templates/user_list.html
@@ -66,10 +66,10 @@
 					Example:
 				</p>
 				<pre>
-testuser1,foobar@example.com
-testuser5,foobsdfar@example.com
-testuser5,foobadfar@example.com
-testuser2,foobaadsfr@example.com
+testuser1,foobar@example.com,5;2;6
+testuser5,foobsdfar@example.com,
+testuser5,foobadfar@example.com,0;5;2
+testuser2,foobaadsfr@example.com,5;2
 				</pre>
 				<textarea rows="10" class="form-control" name="csv"></textarea>
 			</div>