You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

tables.py 186B

1234567
  1. from django_tables2 import Table
  2. class DashboardTable(Table):
  3. class Meta:
  4. template = 'dashboard/table.html'
  5. attrs = {'class': 'table table-striped table-bordered'}