Modify retrieveValues array order to fix issue #62
This commit is contained in:
parent
be717b3559
commit
2685496a25
|
|
@ -11,12 +11,12 @@
|
||||||
<div style=";overflow: hidden">
|
<div style=";overflow: hidden">
|
||||||
<br>
|
<br>
|
||||||
{% for k, v in blockArray[count]["camera"].iteritems() %}
|
{% for k, v in blockArray[count]["camera"].iteritems() %}
|
||||||
{% if v[1] %}
|
{% if v[0] %}
|
||||||
<script> $('#s_title_{{ count }}').html("{{ v[0] }}");</script>
|
<script> $('#s_title_{{ count }}').html("{{ v[0] }}");</script>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
<form class="form-horizontal form-label-left" style="width: 80%; height: 80%; ">
|
<form class="form-horizontal form-label-left" style="width: 80%; height: 80%; ">
|
||||||
<div class="form-group" style="">
|
<div class="form-group" style="">
|
||||||
<img id="cam_{{ count }}" style="-webkit-user-select: none; width: 100%; height: 100%; " src="{{v[0]|replace('&', '&')}}" >
|
<img id="cam_{{ count }}" style="-webkit-user-select: none; width: 100%; height: 100%; " src="{{v[1]|replace('&', '&')}}" >
|
||||||
</div>
|
</div>
|
||||||
</form>
|
</form>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue