Projects
{{ projects|length }} project{{ '' if projects|length == 1 else 's' }}
{% if projects %}
{% for p in projects %}
{{ p.name }}
{% if p.description %}
{{ p.description }}
{% else %}
No description
{% endif %}
Edit
{% endfor %}
{% else %}
No projects yet. Add one below.
{% endif %}