Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have model for example like this:

class Meeting(models.Model):
    date = models.DateTimeField(default=datetime.datetime.now)
    team = models.CharField(max_length=100)

    class Meta:
        verbose_name_plural = u'Meetings'
        ordering = ['-date', 'team']

    def __unicode__(self):
        return u'%s %s' % (self.date, self.team)


class Entry(models.Model):
    meeting = models.ForeignKey(Meeting, blank=True)
    meeting_date = models.DateField(null=True)
    description = models.TextField()

    class Meta:
        verbose_name_plural = u'Entries'

    def __unicode__(self):
        return self.title

I am having a form I am controlling the input with

class MyEntryAdminForm(forms.ModelForm):
class Meta:
    model = Entry

I am getting the data for the meeting field with

meeting = forms.ModelChoiceField(queryset=Meeting.objects.all(), empty_label=None)

I want to extract the date part of the meeting field (I am able to manage this). This date part should be the input for the meeting_date field. The meeting_date field has no input field in the form and should be populated automatically. I don't know how to get this date extract into the meeting_date field and how to store it

The attempt in def clean(self)

cleaned_data['meeting_date'] = date_extract_from_meeting

does not work

Any help is highly appreciated

share|improve this question
1  
Are you planning on changing either meeting.date or entry.meeting_date at some point in the future? If not, then it seems you should just use entry.meeting.date instead of duplicating the data. – tghw Apr 27 '09 at 16:01

1 Answer

There is probably a way to override the form save() method and put the date in at that step, but I can't find any examples of doing this.

A way that I know would work for sure is to pass in commit=False to form.save (this way the actual database insert doesn't happen yet):

instance = form.save(commit=False)

Then you can set the meeting date and save the object:

instance.meeting_date = instance.meeting.date
instance.save()

Hope this helps.

share|improve this answer
+1: I think this is one of the reasons why commmit=False is present in Django. – S.Lott Apr 27 '09 at 16:35
Looks good but I am still lost. Where is this located at. Is it in the MyEntryAdminForm(forms.ModelForm): or somehow in the class EntryAdmin(admin.ModelAdmin): – Helmut Apr 28 '09 at 14:10
I got it: def save_model(self, request, obj, form, change): obj.meeting_date = str(obj.meeting)[0:16] obj.save() That works. Thanks for your help – Helmut Apr 28 '09 at 15:35
cool, glad I could help! – Ricky Apr 29 '09 at 14:48

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.