[Answer]-Accessing feinCMS urls in django templates

1👍

get_absolute_url() already returns the final URL. There’s no need to pass it to the {% url %} templatetag. Just do a variable substition in your template:

<a href="{{ page_obj.get_absolute_url }}">
👤Jonas

Leave a comment