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

{{ header }}

{% if projects %}
    {% for project in projects %}
  • {{ project.title }}
    {% if allow_edit %} Edit {% else %} View {% endif %} Delete
  • {% endfor %}
{% else %} {{ utils.placeholder_text("No projects to show yet.") }} {% endif %} {% if allow_edit %}
Add new proposal
{% endif %}
{% endmacro %} {% block content %} {{ project_list('Your current project proposals', own_projects,allow_edit) }}
{{ project_list('Other projects', other_projects, False) }} {% endblock %}