Skip to content

Latest commit

 

History

History
26 lines (15 loc) · 366 Bytes

File metadata and controls

26 lines (15 loc) · 366 Bytes

# Django Templates Debugger

## Usage

### settings.py

INSTALLED_APPS += [
        "templates_debugger"
]

### urls.py

if settings.DEBUG:
        urlpatterns += path("templates/", include("templates_debugger.urls"))

### Templates

{% load templates_debugger %}
{%  debug_var_faker 'name' 'first_name' %}