roulette/templates/not_subscribed.html
2017-01-30 08:47:32 +01:00

53 lines
1.4 KiB
HTML

{% extends "layout.html" %}
{% block content %}
<h1>Vous n'êtes pas inscrit</h1>
<p>
Si vous désirez participer malgré les risques que le jeu comporte, veuillez
envoyer un email au contact technique.
(Vous ne pouvez pas jouer depuis Supélec)
</p>
<script type="text/javascript">
$(function () {
Highcharts.chart('container', {
chart: {
plotBackgroundColor: null,
plotBorderWidth: 0,
plotShadow: false
},
title: {
text: 'Etat du Rezo',
align: 'center',
verticalAlign: 'middle',
y: 40
},
tooltip: {
pointFormat: '{series.name}: <b>{point.percentage:.1f}%</b>'
},
plotOptions: {
pie: {
dataLabels: {
enabled: true,
distance: -50,
style: {
fontWeight: 'bold',
color: 'white'
}
},
startAngle: -90,
endAngle: 90,
center: ['50%', '75%']
},
},
series: [{
type: 'pie',
name: 'Etat du Rezo',
innerSize: '50%',
data: [
['Tranchés', {{ stats[0] }}],
['Vivants', {{ stats[1] }}]
]
}]
});
});
</script>
{% endblock %}