Fixes for bulk email

This commit is contained in:
Linus Gasser 2025-10-13 08:12:36 +02:00
parent 58deb275db
commit 3816f9fb48
2 changed files with 4 additions and 11 deletions

View file

@ -55,10 +55,10 @@
%ul.small
%li
%code {name}
- User's full name
\- User's full name
%li
%code {conference}
- Conference name
\- Conference name
%li
%code {registrationlink}
- Link to conference registration
\- Link to conference registration

View file

@ -8,14 +8,7 @@
.form-group
= label_tag :filter_type, 'Filter Type', class: 'col-sm-3 control-label'
.col-sm-9
= select_tag :filter_type, options_for_select([
['All users in the system', 'all_users'],
['All registered users', 'all_registered'],
['Users not registered for this conference', 'not_registered'],
['Users who haven\'t answered any registration questions', 'no_questions_answered'],
['Users who answered some but not all questions', 'some_questions_answered'],
['Users who answered all registration questions', 'all_questions_answered']
], params[:filter_type]), { class: 'form-control', id: 'filter-type-select' }
= select_tag :filter_type, options_for_select([['All users in the system', 'all_users'], ['All registered users', 'all_registered'], ['Users not registered for this conference', 'not_registered'], ["Users who haven't answered any registration questions", 'no_questions_answered'], ['Users who answered some but not all questions', 'some_questions_answered'], ['Users who answered all registration questions', 'all_questions_answered']], params[:filter_type]), { class: 'form-control', id: 'filter-type-select' }
.form-group
= label_tag :search_term, 'Search in Name/Email', class: 'col-sm-3 control-label'