class Advert(models.Model):
location_relation = models.ForeignKey("administrative_division.Towns", to_field='name_unique')
class Towns(models.Model):
name = models.CharField(max_length=128)
slug = models.SlugField()
voivodship = models.ForeignKey("Voivodships", to_field='voivodship_identifier')
county = models.ForeignKey("Counties")
name_unique=models.CharField(max_length=255, unique=True)
town_unique=models.BooleanField()
def __unicode__(self):
return "%s. %s"% (self.id, self.name)
class AdvertForm(ModelForm):
category = CustomTreeNodeChoiceField(queryset=Category.objects.filter(parent__isnull=False), empty_label="Wybierz kategoriÄ™", label="Kategoria")
class Meta:
model = Advert
exclude = ('ip', 'user')
widgets = {
'location_relation': TextInput
}
def __init__(self, *args, **kwargs):
self.request = kwargs.pop('request', None)
super(AdvertForm, self).__init__(*args, **kwargs)
def clean_location_relation(self):
from string import capitalize
from django import forms
from administrative_division.models import Towns
cleaned_data = self.cleaned_data['location_relation']
try:
cleaned_data = Towns.objects.get(name_unique=capitalize(cleaned_data.name_unique))
except:
raise forms.ValidationError("Such city does not exist")
return cleaned_data
I use a text input form field instead of a select field. So I need to provide the unique name manually.
What I need is to capitalize provided string to the field named location_relation. I tried different options such as using clean method in model, now I've tried cleaning in model form.
I don't really know how to do it at this moment.
Please give me some hints or a solution to this problem :)