瀏覽代碼

Re-order admin panels to be intro, image then body on models

Edd Baldry 8 年之前
父節點
當前提交
e05a34dab4
共有 3 個文件被更改,包括 3 次插入3 次删除
  1. 1 1
      bakerydemo/blog/models.py
  2. 1 1
      bakerydemo/breads/models.py
  3. 1 1
      bakerydemo/locations/models.py

+ 1 - 1
bakerydemo/blog/models.py

@@ -65,8 +65,8 @@ class BlogPage(Page):
     content_panels = Page.content_panels + [
         FieldPanel('subtitle', classname="full"),
         FieldPanel('introduction', classname="full"),
-        StreamFieldPanel('body'),
         ImageChooserPanel('image'),
+        StreamFieldPanel('body'),
         FieldPanel('date_published'),
         InlinePanel(
             'blog_person_relationship', label="Author(s)",

+ 1 - 1
bakerydemo/breads/models.py

@@ -103,8 +103,8 @@ class BreadPage(Page):
 
     content_panels = Page.content_panels + [
         FieldPanel('introduction', classname="full"),
-        StreamFieldPanel('body'),
         ImageChooserPanel('image'),
+        StreamFieldPanel('body'),
         FieldPanel('origin'),
         FieldPanel('bread_type'),
         MultiFieldPanel(

+ 1 - 1
bakerydemo/locations/models.py

@@ -153,8 +153,8 @@ class LocationPage(Page):
     content_panels = [
         FieldPanel('title', classname="full"),
         FieldPanel('introduction', classname="full"),
-        StreamFieldPanel('body'),
         ImageChooserPanel('image'),
+        StreamFieldPanel('body'),
         FieldPanel('address', classname="full"),
         FieldPanel('lat_long'),
         InlinePanel('hours_of_operation', label="Hours of Operation"),