Files
web2.0-backend/ohlhafv/tables.py
T
2022-08-06 16:54:16 +03:00

11 lines
250 B
Python

import django_tables2 as tables
from django.db.models import Count, Q
from django.utils.translation import gettext as _
from ohlhafv.models import OhlhafvChallenge
class OhlhafvTable(tables.Table):
class Meta:
model = OhlhafvChallenge