diff --git a/src/views/statutory/Applications.vue b/src/views/statutory/Applications.vue index 700561fe5..12abe0019 100644 --- a/src/views/statutory/Applications.vue +++ b/src/views/statutory/Applications.vue @@ -68,11 +68,17 @@ - + {{ props.row.is_on_memberslist | beautify }} + + + {{ props.row.is_on_previous_memberslist | beautify }} + + +
-
Export data
+
Export data for {{ event.name }}
@@ -34,6 +34,17 @@
+
+ +
+ +
+
+
@@ -95,6 +106,7 @@ export default { }, filter: { status: null, + cancelled: null, confirmed: null, participant_type: null }, @@ -156,6 +168,7 @@ export default { const filter = {} if (this.filter.status !== null) filter.status = this.filter.status + if (this.filter.cancelled !== null) filter.cancelled = this.filter.cancelled if (this.filter.confirmed !== null) filter.confirmed = this.filter.confirmed if (this.filter.participant_type !== null) filter.participant_type = this.filter.participant_type