web.tables.correspondent_tables.BaseCorrespondentTable module

Module with the web.tables.BaseCorrespondentTable table class.

class web.tables.correspondent_tables.BaseCorrespondentTable.BaseCorrespondentTable(data=None, order_by=None, orderable=None, empty_text=None, exclude=None, attrs=None, row_attrs=None, pinned_row_attrs=None, sequence=None, prefix=None, order_by_field=None, page_field=None, per_page_field=None, template_name=None, default=None, request=None, show_header=None, show_footer=True, extra_columns=None)[source]

Bases: Table

Table class for core.models.Correspondent.Correspondent.

class Meta[source]

Bases: object

Metadata class for the table.

model

alias of Correspondent

fields = ('is_favorite', 'email_address', 'email_name', 'real_name')
sequence = ('checkbox', 'is_favorite', 'email_address', 'email_name', 'real_name')
_meta = <django_tables2.tables.TableOptions object>
base_columns = {'checkbox': <web.utils.columns.CheckboxColumn object>, 'email_address': <django_tables2.columns.base.Column object>, 'email_name': <django_tables2.columns.base.Column object>, 'is_favorite': <web.utils.columns.IsFavoriteColumn object>, 'real_name': <django_tables2.columns.base.Column object>}