Explorar o código

Stop using now-unneeded col6 classes for panels

Thibaud Colas %!s(int64=2) %!d(string=hai) anos
pai
achega
9bf38d9e35
Modificáronse 1 ficheiros con 4 adicións e 4 borrados
  1. 4 4
      bakerydemo/base/models.py

+ 4 - 4
bakerydemo/base/models.py

@@ -64,8 +64,8 @@ class Person(
             [
                 FieldRowPanel(
                     [
-                        FieldPanel("first_name", classname="col6"),
-                        FieldPanel("last_name", classname="col6"),
+                        FieldPanel("first_name"),
+                        FieldPanel("last_name"),
                     ]
                 )
             ],
@@ -427,8 +427,8 @@ class FormPage(AbstractEmailForm):
             [
                 FieldRowPanel(
                     [
-                        FieldPanel("from_address", classname="col6"),
-                        FieldPanel("to_address", classname="col6"),
+                        FieldPanel("from_address"),
+                        FieldPanel("to_address"),
                     ]
                 ),
                 FieldPanel("subject"),