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
exclude = ('id',)
edit = tables.LinkColumn('note:template_update',
args=[A('pk')],
attrs={'td': {'class': 'col-sm-1'},
'a': {
'class': 'btn btn-sm btn-primary',
'data-turbolinks': 'false',
}},
text=_('edit'),
accessor='pk',
verbose_name=_("Edit"),)
edit = tables.LinkColumn(
'note:template_update',
args=[A('pk')],
attrs={
'td': {'class': 'col-sm-1'},
'a': {
'class': 'btn btn-sm btn-primary',
'data-turbolinks': 'false',
}
},
text=_('edit'),
accessor='pk',
verbose_name=_("Edit"),
)
delete_col = tables.TemplateColumn(template_code=DELETE_TEMPLATE,
extra_context={"delete_trans": _('delete')},