{% extends 'base.html' %} {% load staticfiles %} {% block content %} {% if projects.exists %} {% for project in projects %}

{{ project }}

{% if project.description %} {{ project.description|linebreaksbr }} {% else %} No description provided. {% endif %}
{% endfor %} {% elif user.is_authenticated %}
Sorry, you have no access to any project.
{% else %}
There is not any public project. You should probably login.
{% endif %} {% endblock %}