django tables 2 - add custom column

2.5k Views Asked by At

I'm using django-tables-2 for a project. I have a table that uses a model for displaying data but I need to add one more column to display some informations from another table. Can I do that?

2

There are 2 best solutions below

2
On

Have you tried the following?

# models.py
class Person(models.Model):
    " This is your regular model "
    first_name = models.CharField(max_length=200)
    last_name = models.CharField(max_length=200)
    user = models.ForeignKey("auth.User")
    dob = models.DateField()

class PersonTable(tables.Table):
   id = tables.Column(name="id") # just add a field here
   class Meta:
       model = Person
0
On

You map the column either by having the same name of the model's attribute, either using the accessor property.

I guess in your case it would be:

class UsersTable(tables.Table):

    custom = Column(_("Custom"), accessor='id', orderable=False) # Any attr will do, dont mind it

    def render_custom(self, record):
        return services.get_some_info(record)

    class Meta:
        model = User
        fields = (b'username', )