mirror of
https://gitlab.com/animath/si/plateforme.git
synced 2025-02-07 01:33:02 +00:00
10 lines
196 B
Python
10 lines
196 B
Python
|
import django_tables2 as tables
|
||
|
|
||
|
from member.models import TFJMUser
|
||
|
|
||
|
|
||
|
class UserTable(tables.Table):
|
||
|
class Meta:
|
||
|
model = TFJMUser
|
||
|
fields = ("last_name", "first_name", "role",)
|