{% extends "dashboard_app/_content.html" %} {% load i18n %} {% block title %} {{ block.super }} | {% trans "Test Runs" %} | {{ test_run }} | {% trans "Software Context" %} {% endblock %} {% block breadcrumbs %}
  • {% trans "Bundle Streams" %}
  • {{ test_run.bundle.bundle_stream }}
  • {{ test_run }}
  • {% trans "Software Context" %}
  • {% endblock %} {% block content %}
    {% if test_run.packages.count > 0 %}
    {% for software_package in test_run.packages.all %} {% endfor %}
    Name Version
    {{software_package.name}} {{software_package.version}}
    {% endif %} {% if test_run.sources.count > 0 %}
    {% for software_source in test_run.sources.all %} {% if software_source.is_hosted_on_launchpad %} {% if software_source.is_tag_revision %} {% else %} {% endif %} {% else %} {% endif %} {% endfor %}
    Project VCS Branch Tag or revision
    {{ software_source.project_name }} {{software_source.branch_vcs}} {{ software_source.branch_url }}{{ software_source.branch_tag }}{{ software_source.branch_revision }}{{software_source.project_name}} {{software_source.branch_vcs}} {{software_source.branch_url}} {{software_source.branch_revision}}
    {% endif %}
    {% endblock %}