Begin implementing modern tables
This commit is contained in:
33
core/views/ui/tables.py
Normal file
33
core/views/ui/tables.py
Normal file
@@ -0,0 +1,33 @@
|
||||
from django_tables2 import Table, Column
|
||||
|
||||
class DrilldownTable(Table):
|
||||
id = Column()
|
||||
host = Column()
|
||||
ident = Column()
|
||||
nick = Column()
|
||||
nick_id = Column()
|
||||
user_id = Column()
|
||||
msg = Column()
|
||||
msg_id = Column()
|
||||
net = Column()
|
||||
net_id = Column()
|
||||
num = Column()
|
||||
src = Column()
|
||||
ts = Column()
|
||||
type = Column()
|
||||
bot = Column()
|
||||
channel = Column()
|
||||
channel_category = Column()
|
||||
channel_category_id = Column()
|
||||
channel_category_nsfw = Column()
|
||||
channel_id = Column()
|
||||
channel_nsfw = Column()
|
||||
guild_member_count = Column()
|
||||
guild = Column()
|
||||
guild_id = Column()
|
||||
mode = Column()
|
||||
modearg = Column()
|
||||
sentiment = Column()
|
||||
status = Column()
|
||||
user = Column()
|
||||
version_sentiment = Column()
|
||||
Reference in New Issue
Block a user