Fixed a bug with template rendering.

pull/1705/merge
Brad Busenius 2016-04-15 16:51:27 -05:00 zatwierdzone przez Matt Westcott
rodzic 6e66b74a8d
commit c8b42fa8cb
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -74,7 +74,7 @@ class TableBlock(FieldBlock):
def render(self, value):
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
first_col_is_header = value.get('first_col_is_header', False)
context = {