{% set url_path = request.url.split('?')[0].split('/') %}
{% if 'projects' in url_path %}
{% set url_path = url_path[url_path.index('projects') + 1:] %}
{% else %}
{% set url_path = none %}
{% endif %}
{% set messages = get_flashed_messages(with_categories=True) %}