Use program_table template for all language tables

This commit is contained in:
PCoder 2022-07-11 17:35:12 +05:30
parent 86242dbfb1
commit ae12f220ec
1 changed files with 2 additions and 2 deletions

View File

@ -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,