From f7b560853b79fd00f076e17bc9fbbe958f0e81fd Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Thu, 10 Feb 2011 19:00:58 -0400 Subject: [PATCH] Changed the label message to better reflect its usage --- apps/documents/forms.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/documents/forms.py b/apps/documents/forms.py index d00b9923f7..f8d0de23ee 100755 --- a/apps/documents/forms.py +++ b/apps/documents/forms.py @@ -42,7 +42,7 @@ class DocumentForm(forms.ModelForm): self.fields['document_type_available_filenames'] = forms.ModelChoiceField( queryset=filenames_qs, required=False, - label=_(u'Document type available filenames')) + label=_(u'Quick document rename')) class Meta: model = Document @@ -87,7 +87,7 @@ class StagingDocumentForm(forms.Form): self.fields['document_type_available_filenames'] = forms.ModelChoiceField( queryset=filenames_qs, required=False, - label=_(u'Document type available filenames')) + label=_(u'Quick document rename')) staging_file_id = forms.ChoiceField(label=_(u'Staging file'))