@@ -84,7 +84,7 @@ class ExplorerIndexPage(AlertMixin, BasePageWithIntro):
84
84
explorer.
85
85
"""
86
86
87
- body = StreamField (ExplorerIndexPageStreamBlock , blank = True , use_json_field = True )
87
+ body = StreamField (ExplorerIndexPageStreamBlock , blank = True )
88
88
89
89
articles_title = models .CharField (
90
90
max_length = 100 ,
@@ -115,7 +115,6 @@ class ExplorerIndexPage(AlertMixin, BasePageWithIntro):
115
115
[("featuredarticles" , FeaturedArticlesBlock ())],
116
116
blank = True ,
117
117
null = True ,
118
- use_json_field = True ,
119
118
)
120
119
121
120
content_panels = BasePageWithIntro .content_panels + [
@@ -169,7 +168,7 @@ class TopicExplorerIndexPage(RequiredHeroImageMixin, BasePageWithIntro):
169
168
This page lists all child TopicExplorerPages
170
169
"""
171
170
172
- body = StreamField (TopicIndexPageStreamBlock , blank = True , use_json_field = True )
171
+ body = StreamField (TopicIndexPageStreamBlock , blank = True )
173
172
174
173
content_panels = (
175
174
BasePageWithIntro .content_panels
@@ -250,7 +249,7 @@ class Meta:
250
249
"articles.RecordArticlePage" , blank = True , null = True , on_delete = models .SET_NULL
251
250
)
252
251
253
- body = StreamField (TopicExplorerPageStreamBlock , blank = True , use_json_field = True )
252
+ body = StreamField (TopicExplorerPageStreamBlock , blank = True )
254
253
255
254
skos_id = models .CharField (
256
255
unique = True ,
@@ -400,7 +399,7 @@ class TimePeriodExplorerIndexPage(RequiredHeroImageMixin, BasePageWithIntro):
400
399
This page lists all child TimePeriodExplorerPage
401
400
"""
402
401
403
- body = StreamField (TopicIndexPageStreamBlock , blank = True , use_json_field = True )
402
+ body = StreamField (TopicIndexPageStreamBlock , blank = True )
404
403
405
404
content_panels = (
406
405
BasePageWithIntro .content_panels
@@ -479,9 +478,7 @@ class Meta:
479
478
featured_record_article = models .ForeignKey (
480
479
"articles.RecordArticlePage" , blank = True , null = True , on_delete = models .SET_NULL
481
480
)
482
- body = StreamField (
483
- TimePeriodExplorerPageStreamBlock , blank = True , use_json_field = True
484
- )
481
+ body = StreamField (TimePeriodExplorerPageStreamBlock , blank = True )
485
482
start_year = models .IntegerField (blank = False )
486
483
end_year = models .IntegerField (blank = False )
487
484
content_panels = (
0 commit comments