Skip to content

Commit 8576792

Browse files
authored
Merge pull request #643 from Club-Alpin-Annecy/stat
Stat design for mobile
2 parents 76e5906 + eacd331 commit 8576792

8 files changed

+35
-21
lines changed

collectives/static/css/components/stats.scss

+23
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
.max-100pc{
2+
max-width: 100%;
3+
}
4+
15
.card {
26
position: relative;
37
border-radius: 6px;
@@ -7,6 +11,10 @@
711
padding: 1.25rem;
812
border: 0.5px solid #e6e6e6;
913

14+
&.tall{
15+
height: 400px;
16+
}
17+
1018
.tooltip{
1119
position: absolute;
1220
bottom: 5px;
@@ -47,4 +55,19 @@
4755
.header-3{
4856
font-weight: normal;
4957
}
58+
}
59+
60+
.filters {
61+
display: flex;
62+
flex-wrap: wrap;
63+
gap: 10px;
64+
65+
> * {
66+
flex-grow: 1;
67+
}
68+
@media screen and (max-width: 680px) {
69+
> * {
70+
width: 100%;
71+
}
72+
}
5073
}

collectives/templates/stats/partials/nb_collectives_by_activity_type.html

-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
}]
1616
},
1717
options: {
18-
aspectRatio: 3,
1918
plugins: {
2019
title: {
2120
text: "{{ engine.INDEX['nb_collectives_by_activity_type']['name'] | safe }}",

collectives/templates/stats/partials/nb_events_by_activity_type.html

-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
}]
1616
},
1717
options: {
18-
aspectRatio: 3,
1918
plugins: {
2019
title: {
2120
text: "{{ engine.INDEX['nb_events_by_activity_type']['name'] | safe }}",

collectives/templates/stats/partials/nb_events_by_leaders.html

-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
}]
1616
},
1717
options: {
18-
aspectRatio: 3,
1918
plugins: {
2019
title: {
2120
text: "{{ engine.INDEX['nb_events_by_leaders']['name'] | safe }}",

collectives/templates/stats/partials/nb_user_per_activity_type.html

-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
}]
1616
},
1717
options: {
18-
aspectRatio: 3,
1918
plugins: {
2019
title: {
2120
text: "{{ engine.INDEX['nb_user_per_activity_type']['name'] | safe }}",

collectives/templates/stats/partials/population_registration_number.html

-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414
}]
1515
},
1616
options: {
17-
aspectRatio: 2,
1817
plugins: {
1918
title: {
2019
text: "{{ engine.INDEX['population_registration_number']['name'] | safe }}",

collectives/templates/stats/partials/volunteer_time_by_activity_type.html

-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
}]
1616
},
1717
options: {
18-
aspectRatio: 3,
1918
plugins: {
2019
title: {
2120
text: "{{ engine.INDEX['volunteer_time_by_activity_type']['name'] | safe }}",

collectives/templates/stats/stats.html

+12-15
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
}
1919
});
20-
Chart.defaults.aspectRatio = 1;
20+
Chart.defaults.maintainAspectRatio = false,
2121
Chart.defaults.responsive = true;
2222
Chart.defaults.scale.grace = "10%";
2323
Chart.defaults.layout.padding = 10;
@@ -37,22 +37,19 @@
3737
<div class="heading-1">Statistiques</div>
3838

3939

40-
<form action="{{url_for('root.statistics')}}" id="statistics-form" method="GET" >
41-
42-
<div class="form-search search-data">
40+
<form action="{{url_for('root.statistics')}}" id="statistics-form" method="GET" class="filters">
4341
{{ form.activity_id }}
4442

4543
{{ form.year }}
4644

4745
{{ form.submit(class="button button-primary") }}
4846
{{ form.excel(class="button button-primary") }}
49-
</div>
5047
</form>
5148

5249
<br/>
5350

5451
<div class="tile is-ancestor">
55-
<div class="tile is-vertical">
52+
<div class="tile is-vertical max-100pc">
5653

5754
<div class="tile">
5855
<div class="heading-2"><br/>évènements (tous types confondus)</div>
@@ -73,7 +70,7 @@
7370
{% if engine.activity_id == None %}
7471
<div class="tile"> <!-- Start line -->
7572
<div class="tile is-parent">
76-
<div class="tile card is-child">
73+
<div class="tile card is-child tall">
7774
{% include 'stats/partials/nb_events_by_activity_type.html' %}
7875
</div>
7976
</div>
@@ -99,7 +96,7 @@
9996
{% if engine.activity_id == None %}
10097
<div class="tile"> <!-- Start line -->
10198
<div class="tile is-parent">
102-
<div class="tile card is-child">
99+
<div class="tile card is-child tall">
103100
{% include 'stats/partials/nb_collectives_by_activity_type.html' %}
104101
</div>
105102
</div>
@@ -130,7 +127,7 @@
130127
{% if engine.activity_id == None %}
131128
<div class="tile">
132129
<div class="tile is-parent">
133-
<div class="tile card is-child">
130+
<div class="tile card is-child tall">
134131
{% include 'stats/partials/nb_user_per_activity_type.html' %}
135132
</div>
136133
</div>
@@ -141,14 +138,14 @@
141138

142139
<div class="tile "> <!-- Start line -->
143140
<div class="tile is-parent is-4">
144-
<div class="tile card is-child">
141+
<div class="tile card is-child tall">
145142
{% include 'stats/partials/nb_registrations_by_gender.html' %}
146143
</div>
147144
</div>
148145

149146

150147
<div class="tile is-parent">
151-
<div class="tile card is-child">
148+
<div class="tile card is-child tall">
152149
{% include 'stats/partials/population_registration_number.html' %}
153150
</div>
154151
</div>
@@ -159,13 +156,13 @@
159156
</div>
160157
<div class="tile "> <!-- Start line -->
161158
<div class="tile is-parent is-6">
162-
<div class="tile card is-child">
159+
<div class="tile card is-child tall">
163160
{% include 'stats/partials/nb_events_by_event_type.html' %}
164161
</div>
165162
</div>
166163

167164
<div class="tile is-parent">
168-
<div class="tile card is-child">
165+
<div class="tile card is-child tall">
169166
{% include 'stats/partials/nb_events_by_event_tag.html' %}
170167
</div>
171168
</div>
@@ -177,15 +174,15 @@
177174
</div>
178175
<div class="tile">
179176
<div class="tile is-parent">
180-
<div class="tile card is-child">
177+
<div class="tile card is-child tall">
181178
{% include 'stats/partials/nb_events_by_leaders.html' %}
182179
</div>
183180
</div>
184181
</div> <!-- End .tile line -->
185182
{% if engine.activity_id == None %}
186183
<div class="tile">
187184
<div class="tile is-parent">
188-
<div class="tile card is-child">
185+
<div class="tile card is-child tall">
189186
{% include 'stats/partials/volunteer_time_by_activity_type.html' %}
190187
</div>
191188
</div>

0 commit comments

Comments
 (0)