2017-01-26 22:32:27 +00:00
|
|
|
{% extends "layout.html" %}
|
|
|
|
{% block content %}
|
2018-01-13 14:45:29 +00:00
|
|
|
<script>
|
|
|
|
$(function(){
|
|
|
|
$('#word').keyup(function(e){
|
|
|
|
var input = $(this).val();
|
|
|
|
$.ajax({
|
|
|
|
type: "get",
|
|
|
|
url: "complete",
|
|
|
|
data: {v: input},
|
|
|
|
async: true,
|
|
|
|
success: function(data){
|
|
|
|
var outWords = $.parseJSON(data);
|
|
|
|
$('#auto').html('');
|
|
|
|
|
|
|
|
for(x = 0; x < outWords.length; x++){
|
|
|
|
$('#auto').prepend('<option value="' + outWords[x][0] + '">'+outWords[x][1]+'</option>'); //Fills the #auto div with the options
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})
|
|
|
|
})
|
|
|
|
});
|
|
|
|
</script>
|
2017-01-26 22:32:27 +00:00
|
|
|
<h2>Trancher un joueur</h2>
|
|
|
|
<p>
|
|
|
|
Ta cible sera notifiée quelle que soit l'issue de ta tentative. Question
|
|
|
|
chance, c'est 50-50.
|
|
|
|
</p>
|
|
|
|
<form id="select" action="" method="post">
|
2018-01-13 14:45:29 +00:00
|
|
|
<label for="word">Écrit le nom de ta victime </label>
|
|
|
|
<input type="text" name="search" id="word">
|
|
|
|
<label for="auto">et choisit-la :</label>
|
|
|
|
<select id="auto" name="target_id">
|
|
|
|
<option value="none">(sélectionner un joueur)</option>
|
2018-01-13 14:54:57 +00:00
|
|
|
{% for p in players %}
|
|
|
|
<option value="{{p.id}}">{{p.name}} {{p.firstname}}</option>
|
|
|
|
{% endfor %}
|
2018-01-13 14:45:29 +00:00
|
|
|
</select>
|
2017-01-26 22:32:27 +00:00
|
|
|
<input type="submit" value="Tchak !" />
|
2018-01-13 14:54:57 +00:00
|
|
|
|
2017-01-26 22:32:27 +00:00
|
|
|
</form>
|
2017-01-30 08:51:21 +00:00
|
|
|
<h2>
|
2017-01-26 22:32:27 +00:00
|
|
|
<a href="{{ url_for('home') }}">« retour à l'accueil</a>
|
2017-01-30 08:51:21 +00:00
|
|
|
</h2>
|
|
|
|
|
|
|
|
<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: {
|
2018-01-12 23:30:16 +00:00
|
|
|
text: 'État du Rézo',
|
2017-01-30 07:47:32 +00:00
|
|
|
align: 'center',
|
|
|
|
verticalAlign: 'middle',
|
2017-01-30 10:12:24 +00:00
|
|
|
y: 60
|
2017-01-30 07:47:32 +00:00
|
|
|
},
|
|
|
|
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',
|
2018-01-12 23:30:16 +00:00
|
|
|
name: 'État du Rézo',
|
2017-01-30 07:47:32 +00:00
|
|
|
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 %}
|