kopia lustrzana https://github.com/wagtail/wagtail
Fixed a bug with template rendering.
rodzic
6e66b74a8d
commit
c8b42fa8cb
|
@ -74,7 +74,7 @@ class TableBlock(FieldBlock):
|
||||||
|
|
||||||
def render(self, value):
|
def render(self, value):
|
||||||
template = getattr(self.meta, 'template', None)
|
template = getattr(self.meta, 'template', None)
|
||||||
if template:
|
if template and value:
|
||||||
table_header = value['data'][0] if value.get('data', None) and len(value['data']) > 0 and value.get('first_row_is_table_header', False) else None
|
table_header = value['data'][0] if value.get('data', None) and len(value['data']) > 0 and value.get('first_row_is_table_header', False) else None
|
||||||
first_col_is_header = value.get('first_col_is_header', False)
|
first_col_is_header = value.get('first_col_is_header', False)
|
||||||
context = {
|
context = {
|
||||||
|
|
Ładowanie…
Reference in New Issue