osem-fcy/app/views/admin/emails/bulk.html.haml

25 lines
859 B
Text
Raw Normal View History

2025-10-10 17:16:25 +02:00
.row
2025-10-10 17:58:03 +02:00
.col-md-12
2025-10-13 08:29:27 +02:00
.pull-right
= link_to '← Back to Email Settings', admin_conference_emails_path(@conference.short_title), class: 'btn btn-default'
2025-10-10 17:16:25 +02:00
%h2 Bulk Email
2025-10-10 17:58:03 +02:00
%p Send customized emails to users with advanced filtering and recipient selection.
2025-10-10 17:16:25 +02:00
2025-10-10 17:58:03 +02:00
.nav.nav-pills{ role: 'navigation' }
%li{ class: (@step == 'filter' ? 'active' : ''), id: 'step-filter' }
%a{ href: '#' } 1. Filter Recipients
%li{ class: (@step == 'recipients' ? 'active' : ''), id: 'step-recipients' }
%a{ href: '#' } 2. Select Recipients
%li{ class: (@step == 'compose' ? 'active' : ''), id: 'step-compose' }
%a{ href: '#' } 3. Compose Email
2025-10-10 17:16:25 +02:00
2025-10-10 17:58:03 +02:00
%hr
2025-10-10 17:16:25 +02:00
2025-10-10 17:58:03 +02:00
- case @step
- when 'filter'
= render 'bulk_filter'
- when 'recipients'
= render 'bulk_recipients'
- when 'compose'
= render 'bulk_compose'