diff options
Diffstat (limited to 'pydis_site/apps')
| -rw-r--r-- | pydis_site/apps/home/templatetags/extra_filters.py | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/pydis_site/apps/home/templatetags/extra_filters.py b/pydis_site/apps/home/templatetags/extra_filters.py index d63b3245..89b45831 100644 --- a/pydis_site/apps/home/templatetags/extra_filters.py +++ b/pydis_site/apps/home/templatetags/extra_filters.py @@ -11,7 +11,7 @@ def starts_with(value: str, arg: str) -> bool:      Usage:      ```django -        {% if request.url | starts_with:"/wiki" %} +        {% if request.url | starts_with:"/events" %}            ...          {% endif %}      ```  |