With an instance of Concert I get: unbound method do_stuff() must be called with Concert instance as first argument (got ModelBase instance instead)
models.py:
class Event(models.Model):
    def do_stuff(self):
        response self.do_specific_stuff(self)
class Concert(Event):
    def do_specific_stuff(self):
        ...
class Party(Event):
    def do_specific_stuff(self):
        ...
views:
def index(request):
    x = Concert.objects.get(name='Jack White @ Oakland')
    output = x.do_stuff()
    return HttpResponse(output)
My goal is to loop trough all the events and execute the do_specific_stuff child class method based on what kind of event it is.
 
     
     
     
    