Export users with username and vote weight

Importer expects both username and vote weight,
Thus, exported csv could not easily be reimported
This commit is contained in:
Sean 2020-10-01 15:42:28 +02:00
parent c0fb65316c
commit 28bac117be
1 changed files with 3 additions and 1 deletions

View File

@ -280,7 +280,9 @@ export class UserListComponent extends BaseListViewComponent<ViewUser> implement
{ property: 'is_committee', label: 'Is a committee' },
{ property: 'default_password', label: 'Initial password' },
{ property: 'email' },
{ property: 'gender' }
{ property: 'username' },
{ property: 'gender' },
{ property: 'vote_weight', label: 'Vote weight' }
],
this.translate.instant('Participants') + '.csv'
);