2019-01-20 11:57:24 +01:00
|
|
|
from django.forms import ModelForm
|
|
|
|
from django.utils.translation import gettext_lazy as _
|
|
|
|
from .models import *
|
|
|
|
from django import forms
|
|
|
|
|
|
|
|
|
|
|
|
class ClientForm(ModelForm):
|
|
|
|
class Meta:
|
|
|
|
model = Client
|
|
|
|
fields = '__all__'
|
2019-01-22 20:28:25 +01:00
|
|
|
labels = {
|
2019-01-22 20:28:51 +01:00
|
|
|
<<<<<<< HEAD
|
2019-01-22 20:28:25 +01:00
|
|
|
'id_number': 'Numer dowodu: ',
|
|
|
|
'name': 'Imię: ',
|
|
|
|
'surname': 'Nazwisko: '
|
2019-01-22 20:28:51 +01:00
|
|
|
=======
|
2019-01-22 20:26:44 +01:00
|
|
|
'id_number': _('Numer dowodu '),
|
|
|
|
'name': _('Imię '),
|
|
|
|
'surname': _('Nazwisko ')
|
2019-01-22 20:28:51 +01:00
|
|
|
>>>>>>> 79787db1a58d1e3a363982eba9f484be10a87aaf
|
2019-01-22 20:28:25 +01:00
|
|
|
}
|