{% extends "site_base.html" %} {% load i18n %} {% block head_title %}{% trans "All Contributions" %}{% endblock %} {% block extra_head %} {% endblock %} {% block body_class %}projects{% endblock %} {% block body_base %}
{% include "_messages.html" %}
{% trans "All Contributions" %} {% for event in events %} {% endfor %}
{% trans "Date" %} {% trans "Type" %} {% trans "From" %} {% trans "Project" %} {% trans "Resource Type" %} {% trans "Qty" %} {% trans "URL" %} {% trans "Description" %} {% trans "Process" %} {% trans "Deliverables" %}
{{ event.event_date }} {{ event.event_type }} {{ event.from_agent }} {{ event.context_agent }} {{ event.resource_type }} {{ event.quantity_formatted }} {% if event.url %} {% trans "Open" %} {% endif %} {% if event.description %}{{ event.description|urlize }} {% else %} {{ event.commitment.description|urlize }} {% endif %} {% if event.process %} {{ event.process.name }} {% endif %} {% for d in event.process.deliverables %} {{ d }}
{% endfor %}
{% endblock %} {% block extra_body %} {{ block.super }} {% endblock %}