Skip to content
This repository has been archived by the owner on Nov 15, 2023. It is now read-only.

Commit

Permalink
fixed ordering of vp, vs, rho
Browse files Browse the repository at this point in the history
  • Loading branch information
ben-bougher committed Jun 16, 2014
1 parent 89f672f commit 62b6600
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions templates/scenario.html
Original file line number Diff line number Diff line change
Expand Up @@ -405,21 +405,21 @@ <h3 class="panel-title">Result</h3>
<!--[if IE 9]><select disabled style="display:none"><![endif]-->

{% for rock in rocks %}
<option data-value="{{rock.vp}},{{rock.rho}},{{rock.vs}},
<option data-value="{{rock.vp}},{{rock.vs}},{{rock.rho}},
{{rock.vp_std}}, {{rock.vs_std}}, {{rock.rho_std}}"
data-name="{{rock.name}}">{{rock.name}}</option>
{% endfor %}
{% for group in group_rocks %}
{% for rock in group.rocks %}
<option data-value="{{rock.vp}},{{rock.rho}},{{rock.vs}},
<option data-value="{{rock.vp}},{{rock.vs}},{{rock.rho}},
{{rock.vp_std}}, {{rock.vs_std}}, {{rock.rho_std}}"
data-name="{{rock.name}}">
{{rock.name}}
</option>
{% endfor %}
{% endfor %}
{% for rock in default_rocks %}
<option data-value="{{rock.vp}},{{rock.rho}},{{rock.vs}},
<option data-value="{{rock.vp}},{{rock.vs}},{{rock.rho}},
{{rock.vp_std}}, {{rock.vs_std}}, {{rock.rho_std}}"
data-name="{{rock.name}}">{{rock.name}}
</option>
Expand Down

0 comments on commit 62b6600

Please sign in to comment.