{% extends "base.html" %} {% block title %} Optimizer {% endblock %} {% block content %}
{% if filterForm.is_valid %}

Optimizer (Showing {{ optimizations.start_index }} to {{ optimizations.end_index }} out of {{ paginator.count}} entries) {% if optimizations.has_previous %} << < {% else %} < << {% endif %} | {% if optimizations.has_next %} > >> {% else %} > >> {% endif %}

{% for o in optimizations.object_list %} {% endfor %}
Source Destination Max. Throughput (MB/s) Avg. Throughput (MB/s) Std. Deviation
{% with escapedSource=o.source_se|urlencode:"" %} {% with escapedDestination=o.dest_se|urlencode:"" %} [Detailed] {% endwith %} {% endwith %} {{ o.source_se }} {{ o.dest_se }} {{ o.max_throughput|floatformat:2 }} {{ o.avg_throughput|floatformat:2 }} {{ o.std_deviation|floatformat:2 }}
{% endblock %}