mirror of
https://github.com/davidhalter/django-stubs.git
synced 2025-12-07 12:44:29 +08:00
11 lines
349 B
Python
11 lines
349 B
Python
from typing import Any, Optional
|
|
|
|
from django.contrib.flatpages.models import FlatPage
|
|
from django.core.handlers.wsgi import WSGIRequest
|
|
from django.http.response import HttpResponse
|
|
|
|
DEFAULT_TEMPLATE: str
|
|
|
|
def flatpage(request: WSGIRequest, url: str) -> HttpResponse: ...
|
|
def render_flatpage(request: WSGIRequest, f: FlatPage) -> HttpResponse: ...
|