Use program_table template for all language tables
This commit is contained in:
parent
86242dbfb1
commit
ae12f220ec
1 changed files with 2 additions and 2 deletions
|
@ -59,14 +59,14 @@ class ArticleIndexPage(Page):
|
||||||
)
|
)
|
||||||
table_de = StreamField(
|
table_de = StreamField(
|
||||||
[
|
[
|
||||||
('table_de', TableBlock())
|
('table_de', TableBlock(template='home/program_table.html'))
|
||||||
],
|
],
|
||||||
null=True,
|
null=True,
|
||||||
blank=True,
|
blank=True,
|
||||||
)
|
)
|
||||||
table_fr = StreamField(
|
table_fr = StreamField(
|
||||||
[
|
[
|
||||||
('table_fr', TableBlock())
|
('table_fr', TableBlock(template='home/program_table.html'))
|
||||||
],
|
],
|
||||||
null=True,
|
null=True,
|
||||||
blank=True,
|
blank=True,
|
||||||
|
|
Loading…
Reference in a new issue