{% extends "base.html" %} {% block title %}Linaro Continuous Integration{% endblock %} {% block content %}

CI Integration Loops

{% for integration_loop in integration_loops %} {% if integration_loop.Meta.object_name == IntegrationLoop %}
Loop: {{ integration_loop.id }} || {{ integration_loop.name }}
{% endif %} {% endfor %}

CI Android Loops

{% for android_loop in android_loops %}
Loop: {{ android_loop.id }} || {{ android_loop.name }}
{% endfor %}

CI Kernel Loops

{% for kernel_loop in kernel_loops %}
Loop: {{ kernel_loop.id }} || {{ kernel_loop.name }}
{% endfor %}

CI Android TextField Loops

{% for textfield_loop in android_textfield_loops %}
Loop: {{ textfield_loop.id }} || {{ textfield_loop.name }}
{% endfor %}
{% endblock %} {% block scripts %} {% endblock %}