mirror of
https://github.com/davidhalter/django-stubs.git
synced 2025-12-08 04:54:48 +08:00
Add BaseForm._html_output (#364)
This commit is contained in:
@@ -69,6 +69,9 @@ class BaseForm:
|
|||||||
def hidden_fields(self): ...
|
def hidden_fields(self): ...
|
||||||
def visible_fields(self): ...
|
def visible_fields(self): ...
|
||||||
def get_initial_for_field(self, field: Field, field_name: str) -> Any: ...
|
def get_initial_for_field(self, field: Field, field_name: str) -> Any: ...
|
||||||
|
def _html_output(
|
||||||
|
self, normal_row: str, error_row: str, row_ender: str, help_text_html: str, errors_on_separate_row: bool,
|
||||||
|
) -> SafeText: ...
|
||||||
|
|
||||||
class Form(BaseForm):
|
class Form(BaseForm):
|
||||||
base_fields: Dict[str, Field]
|
base_fields: Dict[str, Field]
|
||||||
|
|||||||
Reference in New Issue
Block a user