diff options
Diffstat (limited to 'archaeological_warehouse/forms.py')
-rw-r--r-- | archaeological_warehouse/forms.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/archaeological_warehouse/forms.py b/archaeological_warehouse/forms.py index a5b8bb50c..b1ff0a480 100644 --- a/archaeological_warehouse/forms.py +++ b/archaeological_warehouse/forms.py @@ -150,6 +150,8 @@ class WarehouseSelect(CustomForm, TableSelect): ), validators=[valid_id(Person)], ) + address = forms.CharField(label=_("Address")) + def __init__(self, *args, **kwargs): super(WarehouseSelect, self).__init__(*args, **kwargs) |