{% 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.title[:1] | upper }} {% endif %} {{ p.title }} {% if not p.published %}draft{% endif %} {% if p.summary %}
{{ p.summary | truncate(80) }}
{% endif %}
Edit
{% endfor %} {% endblock %}