Files
web2.0-backend/kaehmy/tables.py
T
Aarni Halinen ffe0c45eea Fix few kaehmy problems
- Fix variable naming in statistics
- Add scope for html files to fix rendering of errors
- Fix footer.css path and remove duplicate
2018-09-02 22:23:52 +03:00

14 lines
417 B
Python

import django_tables2 as tables
from django.db.models import Count, Q
from django.utils.translation import ugettext as _
from kaehmy.models import Application
class ExportTable(tables.Table):
class Meta:
model = Application
exclude = ['text', 'messageparent_ptr', 'custom_role_name', 'custom_role_is_board', 'timestamp']
all_roles = tables.Column(verbose_name=_('Roles'), orderable=False)