Remove phone numers from invoices (#189)

This commit is contained in:
Tobias Kunze
2016-08-15 15:06:26 +02:00
committed by Raphael Michel
parent f2baf79a52
commit 19e45ac294
6 changed files with 30 additions and 8 deletions

View File

@@ -16,7 +16,7 @@ class InvoiceAddressForm(forms.ModelForm):
class Meta:
model = InvoiceAddress
fields = ('company', 'name', 'street', 'zipcode', 'city', 'country', 'phone', 'vat_id')
fields = ('company', 'name', 'street', 'zipcode', 'city', 'country', 'vat_id')
widgets = {
'street': forms.Textarea(attrs={'rows': 2, 'placeholder': _('Street and Number')}),
}