8 lines
210 B
Python
8 lines
210 B
Python
import django_tables2 as tables
|
|
from django.utils.translation import ugettext as _
|
|
from webapp.models import OhlhafvChallenge
|
|
|
|
|
|
class OhlhafvTable(tables.Table):
|
|
class Meta:
|
|
model = OhlhafvChallenge |