Skip to content
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

fix: Add get_inlines method to BaseModelAdmin #218

Merged
merged 1 commit into from
Dec 26, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion django-stubs/contrib/admin/options.pyi
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from collections import OrderedDict
from collections.abc import Callable, Iterator, Mapping, Sequence
from typing import Any, Generic, TypeVar
from typing import Any, Generic, Iterable, TypeVar
from typing_extensions import Literal, TypedDict

from django.contrib.admin.filters import ListFilter
Expand Down Expand Up @@ -126,6 +126,9 @@ class BaseModelAdmin(Generic[_ModelT]):
def get_sortable_by(
self, request: HttpRequest
) -> list[Callable[..., Any]] | list[str] | tuple[Any, ...]: ...
def get_inlines(
self, request: HttpRequest, obj: _ModelT | None
) -> Iterable[type[InlineModelAdmin[Any]]]: ...
def lookup_allowed(self, lookup: str, value: str) -> bool: ...
def to_field_allowed(self, request: HttpRequest, to_field: str) -> bool: ...
def has_add_permission(self, request: HttpRequest) -> bool: ...
Expand Down