diff --git a/views/tables.py b/views/tables.py index 155f61e1cd15cf5f800c66be75f5ac47b632aa49..a92f832eebb4fb44849aa9dd1bf1ced58a623fa7 100644 --- a/views/tables.py +++ b/views/tables.py @@ -212,7 +212,7 @@ class ProtocolTypeTable(SingleValueTable): calendar_part = [] network_part = [ Table.bool(self.value.restrict_networks), - self.value.allowed_networks + ", ".join(map(str.strip, self.value.allowed_networks.split(","))) ] action_part = [Table.link(url_for("delete_type", protocoltype_id=self.value.id), "Löschen", confirm="Bist du dir sicher, dass du den Protokolltype {} löschen möchtest?".format(self.value.name))] if not self.value.has_admin_right(user):