Fix hanging indent in apps/note/tables.py

This commit is contained in:
Alexandre Iooss 2020-08-09 19:42:09 +02:00
parent f0089d0bc5
commit 40b826a375
1 changed files with 14 additions and 10 deletions

View File

@ -153,16 +153,20 @@ class ButtonTable(tables.Table):
model = TransactionTemplate model = TransactionTemplate
exclude = ('id',) exclude = ('id',)
edit = tables.LinkColumn('note:template_update', edit = tables.LinkColumn(
args=[A('pk')], 'note:template_update',
attrs={'td': {'class': 'col-sm-1'}, args=[A('pk')],
'a': { attrs={
'class': 'btn btn-sm btn-primary', 'td': {'class': 'col-sm-1'},
'data-turbolinks': 'false', 'a': {
}}, 'class': 'btn btn-sm btn-primary',
text=_('edit'), 'data-turbolinks': 'false',
accessor='pk', }
verbose_name=_("Edit"),) },
text=_('edit'),
accessor='pk',
verbose_name=_("Edit"),
)
delete_col = tables.TemplateColumn(template_code=DELETE_TEMPLATE, delete_col = tables.TemplateColumn(template_code=DELETE_TEMPLATE,
extra_context={"delete_trans": _('delete')}, extra_context={"delete_trans": _('delete')},