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

{{ title }}

{% if projects %} {% else %} {{ utils.placeholder_text("No projects to show yet.") }} {% endif %}
{% endmacro %} {% block content %}

Reminder: Remember to rank your projects in the Ranking section - top left of the screen.

{{ 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) }}
{% endblock %}