ck-ntuh-net/mysite/ck/tables.py

12 lines
331 B
Python
Raw Permalink Normal View History

2024-12-11 08:15:42 +00:00
import django_tables2 as tables
from .models import *
class PatientTable(tables.Table):
class Meta:
model = Patient
# template_name = "django_tables2/bootstrap.html"
template_name = "django_tables2/bootstrap4.html"
# fields = ("name", )
# attrs = {"class": "table"}