{% extends "base.html" %} {% load cycle from compat %} {% block title %}Project List{% endblock %} {% block body %}
{% if projects %} {% for p in projects %} {% cycle '
' '' '' %}

{{p.name}}

View patches

{% if p.web_url %}

{{p.web_url}}

{% endif %} {% if p.webscm_url %}

{{p.webscm_url}}

{% endif %}
{% if forloop.last %}
{% else %} {% cycle '' '' '' %} {% endif %} {% endfor %} {% else %}

Patchwork doesn't have any projects to display!

{% endif %} {% endblock %}