import django_tables2 as tables from .models import * from django.utils.html import format_html class TransactionsWalletTable(tables.Table): # id = tables.Column(order_by=True) id = tables.Column(verbose_name='#', orderable=False, attrs={"td":{"width":"5%"}}) wallet = tables.Column(verbose_name='Владелец', orderable=False, attrs={"td":{"width":"15%"}}) name_operation = tables.Column(verbose_name='Услуга', attrs={'th':{'scope':'col'}, "td":{"width":"20%"}}) price = tables.Column(verbose_name='Баллы', attrs={"class":"row", "td":{"width":"10%"}}) date_operation = tables.Column(verbose_name='Дата оформления', attrs={"td":{"width":"30%"}}) is_carried_out = tables.BooleanColumn(verbose_name='Статус', orderable=False, yesno="Успешно,Не успешно", attrs={"td":{"width":"20%"}}) class Meta: #model = TransactionsWallets attrs = {"class": "table table-striped"} exclude = ("balance_before", "amount", "metaservice_id", "transaction_type", "doc_num", "service_id") def render_name_operation(self, value, record): return format_html("{}", record.get_absolute_url(), value)