TestModelTable   A
last analyzed

Size/Duplication

Total Lines 5
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 0
loc 5
rs 10
1
import django_tables2 as tables
2
from crudbuilder.tests.models import TestModel
3
4
5
class TestModelTable(tables.Table):
6
7
    class Meta:
8
        model = TestModel
9
        attrs = {"class": "table table-bordered table-condensed"}
10