Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
edx-platform
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
edx
edx-platform
Commits
13ef9a62
Commit
13ef9a62
authored
Aug 18, 2015
by
Matt Drayer
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #9358 from edx/ziafazal/SOL-1044-fix-org-ddl
SOL-1125: fix for organization id drop down not populating
parents
1b66abc5
53f1b2de
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
4 deletions
+8
-4
lms/djangoapps/certificates/admin.py
+8
-4
No files found.
lms/djangoapps/certificates/admin.py
View file @
13ef9a62
...
...
@@ -18,10 +18,14 @@ class CertificateTemplateForm(forms.ModelForm):
"""
Django admin form for CertificateTemplate model
"""
organizations
=
get_organizations
()
org_choices
=
[(
org
[
"id"
],
org
[
"name"
])
for
org
in
organizations
]
org_choices
.
insert
(
0
,
(
''
,
'None'
))
organization_id
=
forms
.
TypedChoiceField
(
choices
=
org_choices
,
required
=
False
,
coerce
=
int
,
empty_value
=
None
)
def
__init__
(
self
,
*
args
,
**
kwargs
):
super
(
CertificateTemplateForm
,
self
)
.
__init__
(
*
args
,
**
kwargs
)
organizations
=
get_organizations
()
org_choices
=
[(
org
[
"id"
],
org
[
"name"
])
for
org
in
organizations
]
org_choices
.
insert
(
0
,
(
''
,
'None'
))
self
.
fields
[
'organization_id'
]
=
forms
.
TypedChoiceField
(
choices
=
org_choices
,
required
=
False
,
coerce
=
int
,
empty_value
=
None
)
class
Meta
(
object
):
""" Meta definitions for CertificateTemplateForm """
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment