Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
AlekSIS-Core
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Service Desk
Analyze
Contributor analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
AlekSIS®
Official
AlekSIS-Core
Commits
a85d018d
Verified
Commit
a85d018d
authored
5 years ago
by
Nik | Klampfradler
Browse files
Options
Downloads
Patches
Plain Diff
Remove superfluous queryset definition from model form.
Also, update submodules.
parent
5fa41dd3
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
apps/official/BiscuIT-App-Chronos
+1
-1
1 addition, 1 deletion
apps/official/BiscuIT-App-Chronos
apps/official/BiscuIT-App-Exlibris
+1
-1
1 addition, 1 deletion
apps/official/BiscuIT-App-Exlibris
biscuit/core/forms.py
+0
-6
0 additions, 6 deletions
biscuit/core/forms.py
with
2 additions
and
8 deletions
BiscuIT-App-Chronos
@
86ae7def
Compare
422e1172
...
86ae7def
Subproject commit
422e1172a333e5d86cc86ef3234c97cd29c83588
Subproject commit
86ae7deff02652a06d7f7d83017ce16da0718cc2
This diff is collapsed.
Click to expand it.
BiscuIT-App-Exlibris
@
eca95dde
Compare
2f773ba3
...
eca95dde
Subproject commit
2f773ba3141dd9a6c6c68438ac32b1ba917d7dcc
Subproject commit
eca95dde4f327a3ce2acc29c2c00cf0128f7466e
This diff is collapsed.
Click to expand it.
biscuit/core/forms.py
+
0
−
6
View file @
a85d018d
...
@@ -72,9 +72,3 @@ class EditGroupForm(forms.ModelForm):
...
@@ -72,9 +72,3 @@ class EditGroupForm(forms.ModelForm):
class
Meta
:
class
Meta
:
model
=
Group
model
=
Group
fields
=
[
'
name
'
,
'
short_name
'
,
'
members
'
,
'
owners
'
,
'
parent_groups
'
]
fields
=
[
'
name
'
,
'
short_name
'
,
'
members
'
,
'
owners
'
,
'
parent_groups
'
]
def
__init__
(
self
,
*
args
,
**
kwargs
):
super
().
__init__
(
*
args
,
**
kwargs
)
self
.
fields
[
'
members
'
].
queryset
=
Person
.
objects
.
all
()
self
.
fields
[
'
owners
'
].
queryset
=
Person
.
objects
.
all
()
self
.
fields
[
'
parent_groups
'
].
queryset
=
Group
.
objects
.
all
()
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment