2017-01-26 22:32:27 +00:00
|
|
|
{% extends "layout.html" %}
|
|
|
|
{% block content %}
|
2017-01-29 16:29:26 +00:00
|
|
|
<h1>Vous n'êtes pas inscrit</h1>
|
2017-01-26 22:32:27 +00:00
|
|
|
<p>
|
|
|
|
Si vous désirez participer malgré les risques que le jeu comporte, veuillez
|
2017-01-29 23:58:56 +00:00
|
|
|
envoyer un email au contact technique.
|
2017-01-26 22:32:27 +00:00
|
|
|
(Vous ne pouvez pas jouer depuis Supélec)
|
|
|
|
</p>
|
2017-01-30 08:51:21 +00:00
|
|
|
|
|
|
|
<div id="container" style="min-width: 310px; max-width: 600px; margin: 0 auto"></div>
|
2017-01-30 07:47:32 +00:00
|
|
|
<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: [
|
2017-01-30 08:37:54 +00:00
|
|
|
{
|
|
|
|
name: 'Tranchés',
|
|
|
|
y: {{ stats[0] }},
|
|
|
|
color: '#FF0000',
|
|
|
|
},{
|
|
|
|
name: 'Vivants',
|
|
|
|
y: {{ stats[1] }},
|
|
|
|
color: '#FFCC00',
|
|
|
|
}
|
2017-01-30 07:47:32 +00:00
|
|
|
]
|
|
|
|
}]
|
|
|
|
});
|
|
|
|
});
|
|
|
|
</script>
|
2017-01-26 22:32:27 +00:00
|
|
|
{% endblock %}
|