Cleanup unused code

This commit is contained in:
PCoder 2022-07-11 13:10:33 +05:30
parent 51e17687dd
commit 8edd7a477b
3 changed files with 2 additions and 37 deletions

View File

@ -71,10 +71,6 @@ class ArticleIndexPage(Page):
null=True,
blank=True,
)
#table_en = TableBlock()
#table_fr = TableBlock()
#table_de = TableBlock()
trans_table = TranslatedField(
'table_de',
'table_fr',
@ -203,14 +199,6 @@ class ArticlePage(Page):
'body_fr',
'body_en',
)
table_en = TableBlock()
table_fr = TableBlock()
table_de = TableBlock()
trans_table = TranslatedField(
'table_en',
'table_fr',
'table_de',
)
date = models.DateField("Date", null=True, blank=True)
@ -304,15 +292,6 @@ class HomePage(Page):
'body_en',
)
#table_en = TableBlock()
#table_fr = TableBlock()
#table_de = TableBlock()
#trans_table = TranslatedField(
# 'table_en',
# 'table_fr',
# 'table_de',
#)
infos_de = StreamField([
('info', InfoBlock())
], null=True, blank=True)
@ -327,27 +306,24 @@ class HomePage(Page):
'infos_fr',
'infos_en',
)
# content_table = StreamField(TableBlock(), verbose_name=_('Content Table'), blank=True)
content_panels = Page.content_panels + [
MultiFieldPanel([
FieldPanel('intro_de', classname="full"),
FieldPanel('body_de', classname="full"),
StreamFieldPanel('infos_de'),
#StreamFieldPanel('table_de'),
], heading="Deutsch",
classname="collapsible collapsed"),
MultiFieldPanel([
FieldPanel('intro_fr', classname="full"),
FieldPanel('body_fr', classname="full"),
StreamFieldPanel('infos_fr'),
#StreamFieldPanel('table_fr'),
], heading="Français",
classname="collapsible collapsed"),
MultiFieldPanel([
FieldPanel('intro_en', classname="full"),
FieldPanel('body_en', classname="full"),
StreamFieldPanel('infos_en'),
#StreamFieldPanel('table_fr'),
], heading="English",
classname="collapsible collapsed"),
]

View File

@ -27,19 +27,9 @@
<p class="block-{{ block.block_type }}">
{% include_block block %}
</p>
{% endfor %}
</div>
<h1>Mmmm</h1>
<!-- Table content -->
<div class="article-table" role="main">
{% for block in page.trans_table %}
{% if block.block_type == 'table' %}
Inside if
{% include_block block %}
{% endif %}
{% endfor %}
</div>
<!-- Infoblocks -->
<div class="row infoblocks">

View File

@ -44,7 +44,6 @@ INSTALLED_APPS = [
'wagtail.contrib.redirects',
'wagtail.contrib.search_promotions',
"wagtail.contrib.legacy.richtext",
'wagtail.contrib.table_block',
'wagtail.embeds',
'wagtail.sites',