abs_uppattern_img.html
25 lines
| 603 B
| text/html
|
HtmlDjangoLexer
|
r178 | {% 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 %} | ||||