From 38d53bbb92075a4a810019618cc78bdb101504a5 Mon Sep 17 00:00:00 2001 From: Oskar Hahn Date: Tue, 11 Sep 2012 19:30:12 +0200 Subject: [PATCH] fixed first-time-pdf --- openslides/participant/views.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/openslides/participant/views.py b/openslides/participant/views.py index a2575d138..f4bbb8448 100644 --- a/openslides/participant/views.py +++ b/openslides/participant/views.py @@ -269,7 +269,7 @@ class ParticipantsPasswordsPDF(PDFView): cell.append( Paragraph( _("Password: %s") - % (user.firstpassword), stylesheet['Monotype'])) + % (user.default_password), stylesheet['Monotype'])) cell.append(Spacer(0, 0.5 * cm)) cell.append( Paragraph( @@ -321,7 +321,7 @@ class UserImportView(FormView): class ResetPasswordView(RedirectView, SingleObjectMixin, QuestionMixin): """ - Set the Passwort for a user to his firstpassword. + Set the Passwort for a user to his default password. """ permission_required = 'participant.can_manage_participant' model = User