1
0
mirror of https://gitlab.com/animath/si/plateforme.git synced 2025-02-06 18:13:02 +00:00

13 lines
311 B
Python
Raw Normal View History

2020-04-29 16:59:59 +02:00
import django_tables2 as tables
from member.models import TFJMUser
class UserTable(tables.Table):
class Meta:
model = TFJMUser
2020-04-30 21:07:12 +02:00
fields = ("last_name", "first_name", "role", "date_joined", )
attrs = {
'class': 'table table-condensed table-striped table-hover'
}