Skip to content
GitLab
Explore
Sign in
Commits on Source (3)
Add import for fields_for_model
· f4b19d84
Hangzhi Yu
authored
Jul 15, 2023
and
Jonathan Weth
committed
Jul 20, 2023
(cherry picked from commit
362c5b0c
)
f4b19d84
Fix linter
· c3176fc8
Tom Teichler
authored
Jul 18, 2023
and
Jonathan Weth
committed
Jul 20, 2023
(cherry picked from commit
92af870c
)
c3176fc8
Bump version to 3.1.4
· 97f21c0f
Jonathan Weth
authored
Jul 20, 2023
97f21c0f
Hide whitespace changes
Inline
Side-by-side
CHANGELOG.rst
View file @
97f21c0f
...
...
@@ -6,6 +6,14 @@ All notable changes to this project will be documented in this file.
The format is based on `Keep a Changelog`_,
and this project adheres to `Semantic Versioning`_.
`3.1.4`_ - 2023-07-20
---------------------
Fixed
~~~~~
* Extensible form was broken due to a missing import.
`3.1.3`_ – 2023-07-18
---------------------
...
...
aleksis/core/mixins.py
View file @
97f21c0f
...
...
@@ -14,7 +14,7 @@ from django.db import models
from
django.db.models
import
JSONField
,
QuerySet
from
django.db.models.fields
import
CharField
,
TextField
from
django.forms.forms
import
BaseForm
from
django.forms.models
import
ModelForm
,
ModelFormMetaclass
from
django.forms.models
import
ModelForm
,
ModelFormMetaclass
,
fields_for_model
from
django.http
import
HttpResponse
from
django.utils.functional
import
classproperty
,
lazy
from
django.utils.translation
import
gettext
as
_
...
...
docs/conf.py
View file @
97f21c0f
...
...
@@ -31,7 +31,7 @@ author = "The AlekSIS Team"
# The short X.Y version
version
=
"
3.1
"
# The full version, including alpha/beta/rc tags
release
=
"
3.1.
3
"
release
=
"
3.1.
4
"
# -- General configuration ---------------------------------------------------
...
...
pyproject.toml
View file @
97f21c0f
[tool.poetry]
name
=
"AlekSIS-Core"
version
=
"3.1.
3
"
version
=
"3.1.
4
"
packages
=
[
{
include
=
"aleksis"
}
]
...
...