From 8b3e082ffa712b8033833bbc46852c939945c89a Mon Sep 17 00:00:00 2001
From: nd <git@notandy.de>
Date: Fri, 26 Feb 2021 13:50:41 +0100
Subject: [PATCH] do not display none if description is unset

---
 uffd/user/templates/group_list.html | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/uffd/user/templates/group_list.html b/uffd/user/templates/group_list.html
index 3b3a41df..906c9f1f 100644
--- a/uffd/user/templates/group_list.html
+++ b/uffd/user/templates/group_list.html
@@ -23,7 +23,7 @@
 						</a>
 					</td>
 					<td>
-						{{ group.description }}
+						{{ group.description or '' }}
 					</td>
 				</tr>
 				{% endfor %}
-- 
GitLab