You need to learn python.  It isn't C++ or Java

Method definitions which are neither decorated with the classmethod
not staticmethod
decorators receive the instance as their first argument, and you must
explicitly specify
a parameter to receive it.  This parameter is traditionally called
"self" (but can be whatever
you like so long as any references in the method body use the same
name).  This is
also going on in C++, but the parameter is implicitly declared for
you, and you're stuck
with the name they choose (e.g.; "this").

So, you need to say:

   def __init__(self, temsilci=...

On Fri, Apr 2, 2010 at 11:12 AM, H.İbrahim Yılmaz <prehisto...@gmail.com> 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.
>
>

-- 
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.

Reply via email to