I have three functions which I need in every Django Model:

def __unicode__(self):
            return self.MODELNAME_name

def get_absolute_url(self):
            return "/MODELNAME/list/" 

def get_fields(self):
            return [(field, field.value_to_string(self)) for field in MODELNAME._meta.fields]

The only thing different is the MODELNAME

How can I use inheritance so that I use three functions in one class and other inherit from it?

link|improve this question

feedback

3 Answers

up vote 2 down vote accepted

You could use multiple inheritance:

class CommonFunctions(object):
    def __unicode__(self):
        return self.MODELNAME_name
    def get_absolute_url(self):
        return "/MODELNAME/list/" 
    def get_fields(self):
        return [(field, field.value_to_string(self)) for field in MODELNAME._meta.fields]

class ZeModel(models.Model, CommonFunctions):
    [...]

x = ZeModel()
x.get_absolute_url()

(Make sure you replace MODELNAME with self.__class__.__name__)

I did not test this, but it should work.

link|improve this answer
By replacing the MODELNAME u mean like this return "/self.__class__.__name__/list/" – Sonya Jun 29 '11 at 8:35
I mean return "/{0}/list/".format(self.__class__.__name__)... I thought that was obvious – Gabi Purcaru Jun 29 '11 at 8:36
sorry for that , i am newbie in python and django – Sonya Jun 29 '11 at 8:42
sorry again, above one worked but this didn't worked format(self.__class__.__name__)._meta.fields – Sonya Jun 29 '11 at 8:52
use self.__class__._meta.fields – wrongite Jun 29 '11 at 9:06
feedback

You don't need anything at all. self already refers to the relevant class.

link|improve this answer
Sorry but i could not understood , u mean to say that where i am using MODELNAME , i can use self there. Currently i am not using inheritance so can i declare all that in one class and extend others from it – Sonya Jun 29 '11 at 8:22
feedback

Daniel's answer is right. But if you want a string, that is the name of the current model, you can use:

self._meta.verbose_name_raw
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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