Top "Django-tables2" questions

django-tables2 simplifies the task of turning sets of data into HTML tables.

Django Tables - Column Filtering

I started using django-tables2 (which I can highly recommend from the first impression) and I m asking myself how to …

python django django-tables2
Django: django-tables2 pagination and filtering

I have a working table generated by django-tables2: my_filter = TestFilter(request.POST) table = TestTable(TestObj.objects.all(), order_by="…

python django django-tables2
How do I filter tables with Django generic views?

I am trying to create a table view with pagination, sorting, and filtering, using the most common/standard/recommended approach …

django django-class-based-views django-tables2 django-filter
django tables2 create extra column with links

I am trying to add a extra column to one of my tables, that adds url to another page. My …

django hyperlink django-tables2
django-tables2 set of columns

How to tell django-tables2 which columns I would like to have in table? I know there is this Column attribute …

django django-tables2
Django/django-tables2 html table on row click to edit form

sorry this post may be messy not sure how do explain what I am looking for very well but here …

python django django-tables2
Django-tables2: How to use accessor to bring in foreign columns?

I've tried reading the docs and previous answers to this question without much luck. I've got a bunch of student-course …

python django django-tables2
Django-tables2: Change text displayed in column title

I am working with a MySQL view (Create View as Select ...) and have successfully manged to connect the view to …

django django-tables2