1
This repository has been archived on 2023-03-26. You can view files and clone it, but cannot push or open issues or pull requests.
website-2020-spike/website/common/templatetags/navigation.py

9 lines
152 B
Python

from django import template
register = template.Library()
@register.filter(is_safe=True)
def to_navbar_text(path):
return "~/" + path.strip("/")