##// END OF EJS Templates
Task #716: ABS Views...
Task #716: ABS Views git-svn-id: http://jro-dev.igp.gob.pe/svn/jro_hard/radarsys/trunk/webapp@202 aa17d016-51d5-4e8b-934c-7b2bbb1bbe71

File last commit:

r178:6920059c9c16
r179:127ca1c0468c
Show More
abs_downpattern_img.html
25 lines | 703 B | text/html | HtmlDjangoLexer
/ apps / abs / templates / abs_downpattern_img.html
Fiorella Quino
Task #716: ABS Views, plot beams patterns with OverJRO and overJroShow scripts...
r178 {% load static %}
{% load bootstrap3 %}
{% load main_tags %}
{% block content %}
<style>
</style>
<div id="PictureOverJRODown" style="float: right">
<img id="imgMainDown" src="{% url 'url_plot_down_beam' beam.abs_conf.id beam.id %}" alt="Error in Parameters" style="width:360px;height:270px;">
<img id="imgLoaderDown" src="{% static 'images/loading_loading.gif' %}" alt="Error in Parameters" width="50" height="50" align="left">
</div>
<script>
$('#imgMainDown').hide();
$('#imgLoaderDown').show();
$('#imgMainDown').load(function(){
$('#imgLoaderDown').hide();
$('#imgMainDown').show();
});
//window.onload = function () { alert("It's loaded!") }
</script>
{% endblock %}