mirror of https://github.com/interlegis/sigi.git
Felipe Vieira
13 years ago
1 changed files with 57 additions and 0 deletions
@ -0,0 +1,57 @@ |
|||
{% extends "index.html" %} |
|||
|
|||
{% block content_title %}<h1>Graficos dos Diagnósticos</h1>{% endblock %} |
|||
|
|||
{% block extrahead %} |
|||
<script type="text/javascript" src="http://code.jquery.com/jquery-1.6.4.min.js"></script> |
|||
<script language=javascript> |
|||
jQuery(document).ready(function () { |
|||
jQuery("form#categoria select").change(function () { |
|||
jQuery("form#categoria").submit() |
|||
}); |
|||
|
|||
jQuery("#perguntas a").click(function(event){ |
|||
event.preventDefault(); |
|||
|
|||
id = jQuery(this).attr('id') |
|||
output_id = '#output_'+id |
|||
jQuery.ajax({ |
|||
url: jQuery(this).attr('href'), |
|||
success: function(data) { |
|||
jQuery("img", output_id).attr('src',data['url']) |
|||
jQuery("img", output_id).slideDown() |
|||
}, |
|||
error: function(errorSender, errorMsg) { |
|||
jQuery(output_id).html(errorSender + ' ' + errorMsg); |
|||
} |
|||
}); |
|||
|
|||
return false |
|||
}); |
|||
}); |
|||
</script> |
|||
{% endblock %} |
|||
|
|||
{% block content %} |
|||
<div id="content-main"> |
|||
<form id="categoria" action="." method="POST"> |
|||
<select name="categoria"> |
|||
{% for categoria in categorias %} |
|||
<option value="{{categoria.id}}" {% if categoria.id == sel_categoria %}selected="selected"{% endif %}>{{categoria.nome}}</option> |
|||
{% endfor %} |
|||
</select> |
|||
</form> |
|||
<div id="perguntas"> |
|||
<ul> |
|||
{% for pergunta in perguntas%} |
|||
<li> |
|||
<a id="{{pergunta.name}}" href="/sigi/diagnosticos/grafico_api/?id={{pergunta.name}}">{{pergunta.title}}</a> |
|||
<div id="output_{{pergunta.name}}" class="grafico"> |
|||
<img style="display:none"/> |
|||
</div> |
|||
</li> |
|||
{% endfor %} |
|||
</ul> |
|||
</div> |
|||
</div> |
|||
{% endblock %} |
Loading…
Reference in new issue