Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
#3019: Portfolio and domain invitation emails [AD] #3252
#3019: Portfolio and domain invitation emails [AD] #3252
Changes from 28 commits
a2e6238
d766aa9
d2d44bf
b4826ea
dd32cb9
ddf7d92
d888c61
f09627b
060f2d5
ae3ce1f
7bbee19
5cb6c3f
d2343b7
7658810
08b985d
be657e1
4e4e2c0
1fe97eb
955d0a7
d27352b
1b16d6d
8326bbb
f2bd0ad
d36e2e2
d7493cc
a8340f5
267364e
e845fe1
b86d8bc
2007daa
b39c143
0c07e93
c5325a6
c70a16d
84f6445
8b29171
File filter
Filter by extension
Conversations
Jump to
There are no files selected for viewing
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
non blocking question why "opts"?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If confusing, can change. Was modeling code after super class, django.contrib.admin.options.ModelAdmin, in which many of their methods get the options from _meta.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@dave-kennedy-ecs It looks like
opts
is being used on line 1673 after pulling from obj (its usingobj._meta
instead ofself.model._meta
). The value for the var definition here is never actually being used, only the _meta property from obj. Seems like a typo and makes it a bit hard to follow -- can you delete the opts definition on this line?