{% extends "base_template.html" %} {% block title %}Projects{% endblock %} {% block content %}

Projects

Manage projects and their status.

+ Add project
{% with messages = get_flashed_messages(with_categories=true) %} {% for category, message in messages %}
{{ message }}
{% endfor %} {% endwith %} {% for group, projects in groups.items() %}
{{ group }} {{ projects | length }}
{% for p in projects %} {% endfor %}
{% if p.image %} {% else %} {{ (p.acronym or p.title)[:1] | upper }} {% endif %} {{ p.title }} {% if p.acronym %}({{ p.acronym }}){% endif %} {% if not p.published %}draft{% endif %}
{{ p.programme or p.funding_agency }}{% if p.summary %} ยท {{ p.summary | truncate(80) }}{% endif %}
Edit
{% endfor %} {% endblock %}