##// 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_uppattern_img.html
25 lines | 603 B | text/html | HtmlDjangoLexer
/ apps / abs / templates / abs_uppattern_img.html
{% load static %}
{% load bootstrap3 %}
{% load main_tags %}
{% block content %}
<style>
</style>
<div id="PictureOverJROUp" style="float: right">
<img id="imgMain" src="{% url 'url_plot_up_beam' beam.abs_conf.id beam.id %}" alt="Error in Parameters" style="width:360px;height:270px;">
<img id="imgLoader" src="{% static 'images/loading_loading.gif' %}" alt="Error in Parameters" width="50" height="50">
</div>
<script>
$('#imgMain').hide();
$('#imgLoader').show();
$('#imgMain').load(function(){
$('#imgLoader').hide();
$('#imgMain').show();
});
</script>
{% endblock %}