clarion/lib/initfest/views/public/volunteerships/index.slim

15 lines
653 B
Plaintext
Raw Normal View History

- content_for(:title) { VolunteerTeam.model_name.human(count: 2).mb_chars.capitalize.to_s }
h1 = VolunteerTeam.model_name.human(count: 2).mb_chars.capitalize
.container.volunteer_teams
- @volunteer_teams.each do |vt|
.col-lg-3
h2 = vt.name
p
= vt.description
- if vt.include? current_user
= button_to t('views.volunteerships.withdraw_application'), volunteership_path(vt.volunteerships.where(volunteer: current_user).first), class: ['btn-link', 'btn-link-red'], method: :delete
- else
= button_to t('views.volunteerships.apply'), volunteer_team_volunteership_path(vt), class: ['btn-link']