mirror of
https://github.com/davidhalter/django-stubs.git
synced 2025-12-13 23:41:55 +08:00
34 lines
891 B
Python
34 lines
891 B
Python
from typing import Any, Dict
|
|
|
|
from django.contrib.auth.forms import AuthenticationForm, PasswordChangeForm
|
|
from django.contrib.auth.models import User
|
|
|
|
class AdminAuthenticationForm(AuthenticationForm):
|
|
auto_id: str
|
|
data: Dict[str, str]
|
|
empty_permitted: bool
|
|
error_class: type
|
|
fields: Dict[Any, Any]
|
|
files: Dict[Any, Any]
|
|
initial: Dict[Any, Any]
|
|
is_bound: bool
|
|
label_suffix: str
|
|
request: None
|
|
user_cache: None
|
|
error_messages: Any = ...
|
|
required_css_class: str = ...
|
|
def confirm_login_allowed(self, user: User) -> None: ...
|
|
|
|
class AdminPasswordChangeForm(PasswordChangeForm):
|
|
auto_id: str
|
|
data: Dict[Any, Any]
|
|
empty_permitted: bool
|
|
error_class: type
|
|
fields: Dict[Any, Any]
|
|
files: Dict[Any, Any]
|
|
initial: Dict[Any, Any]
|
|
is_bound: bool
|
|
label_suffix: str
|
|
user: Any
|
|
required_css_class: str = ...
|