kopia lustrzana https://github.com/simonw/datasette
10 wiersze
167 B
Python
10 wiersze
167 B
Python
![]() |
from datasette import hookimpl
|
||
|
|
||
|
|
||
|
@hookimpl
|
||
|
def extra_template_vars(view_name, request):
|
||
|
return {
|
||
|
"view_name": view_name,
|
||
|
"request": request,
|
||
|
}
|