Skip to content

Commit fdfa23b

Browse files
committed
v1.0.5
1 parent 0ff728f commit fdfa23b

4 files changed

Lines changed: 13 additions & 3 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ for StreamField as list of your block models
5959

6060
...
6161

62-
STREAMBLOCKS = [
62+
STREAMBLOCKS_MODELS = [
6363
RichText,
6464
ImageWithText
6565
]

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
setuptools.setup(
77
name="django-streamfield",
8-
version="1.0.4",
8+
version="1.0.5",
99
author="Yury Lapshinov",
1010
author_email="y.raagin@gmail.com",
1111
description="StreamField for native Django Admin or with Grappelli",

streamfield/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
name = "streamfield"
2-
VERSION = '1.0.4'
2+
VERSION = '1.0.5'

streamfield/static/streamfield/css/streamfield_widget.css

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,16 @@
9393
border-bottom: 1px solid #CCC;
9494
}
9595

96+
.streamfield_app .block-fields ul li {
97+
margin-left: 20px;
98+
list-style: disc;
99+
}
100+
101+
.streamfield_app .block-fields ol li {
102+
margin-left: 20px;
103+
list-style: decimal;
104+
}
105+
96106
.streamfield_app .block-fields b {
97107
font-weight: bold;
98108
}

0 commit comments

Comments
 (0)