Skip to content
This repository has been archived by the owner on Jan 28, 2020. It is now read-only.

Commit

Permalink
add guidance to name field on bulk update form
Browse files Browse the repository at this point in the history
Because SOPNs often have the name in LAST first form people sometimes
add candidates like this so include some guidance in the label that we
prefer First Last.

Fixes #78
  • Loading branch information
struan committed Apr 28, 2017
1 parent d31a37f commit a334a36
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion bulk_adding/forms.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@

from django import forms
from django.utils.safestring import SafeText
from django.utils.translation import ugettext_lazy as _

from candidates.views import search_person_by_name

Expand Down Expand Up @@ -80,7 +81,9 @@ def add_fields(self, form, index):


class QuickAddSinglePersonForm(forms.Form):
name = forms.CharField(required=True)
name = forms.CharField(
label=_("Name (style: Ali Smith, not SMITH Ali)"),
required=True)
source = forms.CharField(required=True)


Expand Down

0 comments on commit a334a36

Please sign in to comment.