-
Notifications
You must be signed in to change notification settings - Fork 1
/
suivre.html
101 lines (93 loc) · 2.31 KB
/
suivre.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
<template name="page_suivre">
{{> suivre}}
</template>
<template name="suivre">
{{#if name}}
<h1>{{name}}</h1>
<!-- <p>Type de tournoi: {{typeTournoi}}</p>
{{#if optionElDir}}
<p>Option d'élimination directe: {{optionElDir}}</p>
{{/if}}
{{#if optionSerie}}
<p>Option de série: {{optionSerie}}</p>
{{/if}}
Joueurs: <pre class="joueurs">{{joueurs}}</pre> -->
<h3>Classement</h3>
<table class="table table-striped table-responsive">
<thead>
<tr>
<th>#</th>
<th>Joueur</th>
<th>J</th>
<th>V</th>
<th>N</th>
<th>D</th>
<th>+</th>
<th>-</th>
<th>+/-</th>
<th>PTS</th>
</tr>
</thead>
<tbody>
{{#each joueur in joueurs}}
<tr>
<td>#</td>
<td>{{joueur}}</td>
{{> classement name=joueur tournoi=_id}}
</tr>
{{/each}}
</tbody>
</table>
{{> termine tournoi=_id}}
{{> aJouer tournoi=_id}}
{{else}}
{{> fieldset val_title="VOIR" val_var=true btn_txt="GO" btn_link="/suivre" fs_id="lienSuivre" class="voir"}}
{{/if}}
</template>
<template name="classement">
<td>{{matchJoue name tournoi}}</td>
<td>{{matchGagne name tournoi}}</td>
<td>{{matchNul name tournoi}}</td>
<td>{{matchPerdu name tournoi}}</td>
<td>{{scorePositif name tournoi}}</td>
<td>{{scoreNegatif name tournoi}}</td>
<td>{{diffScore name tournoi}}</td>
<td>{{totalPoints name tournoi}}</td>
</template>
<template name="aJouer">
<h2>A jouer</h2>
<div class="row">
{{#each matchRestants tournoi}}
<div class="col-xs-6 col-md-4 col-lg-2 matchAjouer">
<div class="row">
<span class="col-xs-5">
{{j1.name}}
</span>
<span class="col-xs-2">
-
</span>
<span class="col-xs-5">
{{j2.name}}
</span>
</div>
</div>
{{/each}}
</div>
</template>
<template name="termine">
<h2>Derniers résultats</h2>
<table class="table table-striped table-responsive">
<tbody>
{{#each matchTermines tournoi}}
<tr>
<td>{{j1.name}}</td>
<td class="score">{{j1.score}}</td>
<td>-</td>
<td class="score">{{j2.score}}</td>
<td>{{j2.name}}</td>
<td>{{dateModif}}</td>
</tr>
{{/each}}
</tbody>
</table>
</template>