{% extends "web/base.html" %} {% load humanize %} {% block title %}Formations{% endblock %} {% block content %}

{% if formations %}{{ formations|length|apnumber|capfirst }}{% else %}No{% endif %} Formation{{ formations|pluralize }}

{% for formation in formations %}

{{ formation.id }}

Updated
{{ formation.updated }}
Created
{{ formation.created }}
Owned by
{{ formation.owner }}
{% if domain %}
Domain
{{ formation.domain }}
{% endif %}
{% for node in formation.nodes %} {{ node }} {% endfor %}
{% endfor %}
{% endblock %}