Hi,
I have a list of fields for an object:
fields = ('title', 'first_name', 'last_name)
Now I want to access the fields of my object on runtime, without harcoding it like this.
myobject.title
What I'm searching for is something like this:
myobject.getFieldValue('title')
Is there a method like this in django? I did not find one.