{% extends "base.html" %}
{% comment %}© 2011, Multapplied Networks, Inc.{% endcomment %}
{% load bootstrap %}
{% block base %}{% endblock %}
{% block title %}{{ bond.bonder.name | escapejs }} Tunings {{ block.super }}{% endblock %}
{% block breadcrumbs %}
{{ block.super }}
Bonds
{{ bond.bonder.name }}
Tunings
{% endblock %}
{% block content %}
Bond Tunings
| ID |
By |
Submitted |
Status |
Acknowledgement |
Details |
{% for tuning in bond_tunings %}
| {{ tuning.id }} |
{{ tuning.submitted_by }} |
{{ tuning.created }} |
{{ tuning.status | title }} |
{{ tuning.results_acknowledgement | title }} |
|
{% endfor %}
Leg Tunings
| ID |
By |
Submitted |
Status |
Acknowledgement |
Details |
{% for tuning in leg_tunings %}
| {{ tuning.id }} |
{% if tuning.submitted_by %}
{{ tuning.submitted_by }}
{% else %}
{{ tuning.bondtuner }}
{% endif %}
|
{{ tuning.created }} |
{{ tuning.status | title }} |
{{ tuning.results_acknowledgement | title }} |
|
{% endfor %}
{% endblock %}