ck-ntuh-net/mysite/ck/tables.py
2024-12-11 16:15:42 +08:00

12 lines
No EOL
331 B
Python

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"}