Fix article stat display

This commit is contained in:
Ludovic Stephan 2017-04-01 10:37:40 -03:00
parent 1286606f7a
commit bbb517fbd3

View file

@ -101,9 +101,8 @@
<script type="text/javascript" src="{% static 'kfet/js/statistic.js' %}"></script> <script type="text/javascript" src="{% static 'kfet/js/statistic.js' %}"></script>
<script> <script>
jQuery(document).ready(function() { jQuery(document).ready(function() {
var stat_last = $("#stat_last"); var stat_last = new StatsGroup("{% url 'kfet.article.stat.last' article.id %}",
var stat_last_url = "{% url 'kfet.article.stat.last' article.id %}"; $("#stat_last"));
STAT.get_thing(stat_last_url, stat_last, "Stat non trouvées :(");
}); });
</script> </script>
{% endblock %} {% endblock %}