initial commit

This commit is contained in:
Maxim Kurnikov
2018-07-29 18:12:23 +03:00
commit a9f215bf64
311 changed files with 13433 additions and 0 deletions

View File

@@ -0,0 +1,31 @@
from django.core.handlers.wsgi import WSGIRequest
from django.template.backends.base import BaseEngine
from django.template.backends.django import (
DjangoTemplates,
Template,
)
from typing import (
Any,
List,
Optional,
Union,
)
def _engine_list(
using: Optional[str] = ...
) -> Union[List[DjangoTemplates], List[BaseEngine]]: ...
def get_template(template_name: str, using: None = ...) -> Template: ...
def render_to_string(
template_name: Union[str, List[str]],
context: Any = ...,
request: Optional[WSGIRequest] = ...,
using: Optional[str] = ...
) -> str: ...
def select_template(template_name_list: List[str], using: None = ...) -> Template: ...