11 lines
251 B
Python
11 lines
251 B
Python
import django_tables2 as tables
|
|
from django.db.models import Count, Q
|
|
from django.utils.translation import ugettext as _
|
|
|
|
from ohlhafv.models import OhlhafvChallenge
|
|
|
|
|
|
class OhlhafvTable(tables.Table):
|
|
class Meta:
|
|
model = OhlhafvChallenge
|