mirror of
https://github.com/davidhalter/django-stubs.git
synced 2025-12-23 20:31:32 +08:00
Allow template render to string helper functions to accept Context (#372)
* Add failing test case for render_to_string * Allow Context objects in template render functions
This commit is contained in:
@@ -1,5 +1,6 @@
|
||||
from typing import Any, Dict, List, Optional, Union
|
||||
from . import engines as engines # noqa: F401
|
||||
from .context import Context
|
||||
|
||||
from django.http.request import HttpRequest
|
||||
from django.template.exceptions import TemplateDoesNotExist as TemplateDoesNotExist # noqa: F401
|
||||
@@ -8,7 +9,7 @@ def get_template(template_name: str, using: Optional[str] = ...) -> Any: ...
|
||||
def select_template(template_name_list: Union[List[str], str], using: Optional[str] = ...) -> Any: ...
|
||||
def render_to_string(
|
||||
template_name: Union[List[str], str],
|
||||
context: Optional[Dict[str, Any]] = ...,
|
||||
context: Optional[Union[Context, Dict[str, Any]]] = ...,
|
||||
request: Optional[HttpRequest] = ...,
|
||||
using: Optional[str] = ...,
|
||||
) -> str: ...
|
||||
|
||||
Reference in New Issue
Block a user