Hi all, Thanks it works! But, i have another question about my view. When i use my view (as seen below) i can't get see the form. Thanks!
2010/4/2 Benjamin Welton <benjamin.r.wel...@wmich.edu>: > def __init__(temsilci = None, *args, **kwargs) > > should include self as the first argument. > > def __init__(self, temsilci = None, *args, **kwargs) > > Ben > > > H.İbrahim Yılmaz wrote: >> >> Hi all, >> I get "global name 'self' is not defined" error what is the problem? >> Thanks. >> >> from django.db import models >> from django.forms import * >> from yenicrm.musteri.models import * >> from django.contrib.auth.models import User >> from django.forms.extras.widgets import * >> >> # Create your models here. >> class Ziyaret(models.Model): >> tarih = models.DateField() >> temsilci = models.ForeignKey(User) >> musteri = models.ForeignKey(Musteri) >> gorusler = models.TextField() >> >> class ZiyaretForm(ModelForm): >> tarih = DateField(widget=SelectDateWidget()) >> musteri = ModelChoiceField(queryset = Musteri.objects.none()) >> >> def __init__(temsilci = None, *args, **kwargs): >> super(ZiyaretForm, self).__init__(*args, **kwargs) >> self.fields["musteri"] = Musteri.objects.none() if temsilci is >> None else Musteri.objects.filter(temsilci = temsilci) >> >> class Meta: >> model = Ziyaret >> exclude = ("temsilci",) >> >> > > -- > You received this message because you are subscribed to the Google Groups > "Django users" group. > To post to this group, send email to django-us...@googlegroups.com. > To unsubscribe from this group, send email to > django-users+unsubscr...@googlegroups.com. > For more options, visit this group at > http://groups.google.com/group/django-users?hl=en. > > -- http://www.arkeoloji.web.tr -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-us...@googlegroups.com. To unsubscribe from this group, send email to django-users+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/django-users?hl=en.