{% extends "components/layout.html" %} {% macro project_list(title, projects) %} {% if projects %}

{{ title }}

{% endif %} {% endmacro %} {% block content %}
{% if projects %} {{ project_list("All project proposals", projects | selectattr("on_behalf", "ne", current_user.username) | list) }} {{ project_list("Your own project proposals", projects | selectattr("on_behalf", "eq", current_user.username) | list) }} {% else %}

No projects to show.

{% endif %}
{% endblock %}