Browse Source

Added the option for housing providers to opt out of attending the conference

development
Godwin 8 years ago
parent
commit
2d76af89d9
  1. 18
      app/controllers/conferences_controller.rb
  2. 8
      app/helpers/application_helper.rb
  3. 1
      app/views/conferences/_hosting.html.haml
  4. 4
      config/locales/en.yml
  5. 2
      config/locales/es.yml

18
app/controllers/conferences_controller.rb

@ -124,6 +124,17 @@ class ConferencesController < ApplicationController
current_user.save! unless @errors.present? current_user.save! unless @errors.present?
when :hosting when :hosting
@registration.can_provide_housing = params[:can_provide_housing].present? @registration.can_provide_housing = params[:can_provide_housing].present?
if params[:not_attending]
@registration.is_attending = 'n'
if current_user.is_subscribed.nil?
current_user.is_subscribed = false
current_user.save!
end
else
@registration.is_attending = 'y'
end
@registration.housing_data = { @registration.housing_data = {
address: params[:address], address: params[:address],
phone: params[:phone], phone: params[:phone],
@ -1326,6 +1337,11 @@ class ConferencesController < ApplicationController
if @registration.present? if @registration.present?
if view_context.same_city?(@registration.city, view_context.location(conference.location, conference.locale)) if view_context.same_city?(@registration.city, view_context.location(conference.location, conference.locale))
steps -= [:questions] steps -= [:questions]
# if this is a housing provider that is not attending the conference, remove these steps
if @registration.is_attending == 'n'
steps -= [:payment, :workshops]
end
else else
steps -= [:hosting] steps -= [:hosting]
end end
@ -1545,7 +1561,7 @@ class ConferencesController < ApplicationController
:conference_id => @conference.id, :conference_id => @conference.id,
:user_id => session[:registration][:user][:id], :user_id => session[:registration][:user][:id],
:email => session[:registration][:email], :email => session[:registration][:email],
:is_attending => 'yes', :is_attending => 'y',
:is_participant => session[:registration][:is_participant], :is_participant => session[:registration][:is_participant],
:is_volunteer => session[:registration][:is_volunteer], :is_volunteer => session[:registration][:is_volunteer],
:is_confirmed => false, :is_confirmed => false,

8
app/helpers/application_helper.rb

@ -896,11 +896,11 @@ module ApplicationHelper
case to.to_sym case to.to_sym
when :registered when :registered
ConferenceRegistration.where(conference_id: conference.id).each do | r | ConferenceRegistration.where(conference_id: conference.id).each do | r |
users << r.user if ((r.steps_completed || []).include? 'questions') && r.user.present? users << r.user if ((r.steps_completed || []).include? 'questions') && r.user.present? && r.is_attending != 'n'
end end
when :pre_registered when :pre_registered
ConferenceRegistration.where(conference_id: conference.id).each do | r | ConferenceRegistration.where(conference_id: conference.id).each do | r |
users << r.user if ((r.steps_completed || []).include? 'contact_info') && r.user.present? users << r.user if ((r.steps_completed || []).include? 'contact_info') && r.user.present? && r.is_attending != 'n'
end end
when :workshop_facilitators when :workshop_facilitators
user_hash = {} user_hash = {}
@ -912,7 +912,7 @@ module ApplicationHelper
users = user_hash.values users = user_hash.values
when :unregistered when :unregistered
ConferenceRegistration.where(conference_id: conference.id).each do | r | ConferenceRegistration.where(conference_id: conference.id).each do | r |
users << r.user unless ((r.steps_completed || []).include? (conference.registration_status == :open ? 'questions' : 'contact_info')) || r.user.nil? users << r.user unless ((r.steps_completed || []).include? (conference.registration_status == :open ? 'questions' : 'contact_info')) || r.user.nil? || r.is_attending == 'n'
end end
when :housing_providers when :housing_providers
ConferenceRegistration.where(conference_id: conference.id, can_provide_housing: true).each do | r | ConferenceRegistration.where(conference_id: conference.id, can_provide_housing: true).each do | r |
@ -920,7 +920,7 @@ module ApplicationHelper
end end
when :guests when :guests
ConferenceRegistration.where(conference_id: conference.id, housing: 'house').each do | r | ConferenceRegistration.where(conference_id: conference.id, housing: 'house').each do | r |
users << r.user if r.user.present? users << r.user if r.user.present? && r.is_attending != 'n'
end end
when :all when :all
User.all.each do | u | User.all.each do | u |

1
app/views/conferences/_hosting.html.haml

@ -2,6 +2,7 @@
= form_tag register_path(@this_conference.slug) do = form_tag register_path(@this_conference.slug) do
= checkbox :can_provide_housing, @registration.can_provide_housing, 'articles.conference_registration.can_provide_housing', heading: 'articles.conference_registration.headings.can_provide_housing', help: 'articles.conference_registration.paragraphs.can_provide_housing', inline: true, toggles: 'hosting-options', centered: true = checkbox :can_provide_housing, @registration.can_provide_housing, 'articles.conference_registration.can_provide_housing', heading: 'articles.conference_registration.headings.can_provide_housing', help: 'articles.conference_registration.paragraphs.can_provide_housing', inline: true, toggles: 'hosting-options', centered: true
#hosting-options #hosting-options
= checkbox :not_attending, @registration.is_attending == 'n', 'articles.conference_registration.not_attending', help: 'articles.conference_registration.paragraphs.not_attending', inline: true, right_help: true
= textfield :address, @hosting_data['address'], required: true, heading: 'articles.conference_registration.headings.host.address', help: 'articles.conference_registration.paragraphs.host.address' = textfield :address, @hosting_data['address'], required: true, heading: 'articles.conference_registration.headings.host.address', help: 'articles.conference_registration.paragraphs.host.address'
= telephonefield :phone, @hosting_data['phone'], required: true = telephonefield :phone, @hosting_data['phone'], required: true
= fieldset :space, heading: 'articles.conference_registration.headings.host.space', help: 'articles.conference_registration.paragraphs.host.space' do = fieldset :space, heading: 'articles.conference_registration.headings.host.space', help: 'articles.conference_registration.paragraphs.host.space' do

4
config/locales/en.yml

@ -1021,8 +1021,6 @@ en:
admin: admin:
edit: edit:
info: Info info: Info
payment:
message: XXX
companion: Companion companion: Companion
paragraphs: paragraphs:
Policy_Agreement: Ensuring that all attendees feel welcome, safe, and respected at all times is especially important to us all. Please ensure that you have fully read and understand our safer spaces policy below, if you have any questions or concerns you can reach out to the organizers at any time. Policy_Agreement: Ensuring that all attendees feel welcome, safe, and respected at all times is especially important to us all. Please ensure that you have fully read and understand our safer spaces policy below, if you have any questions or concerns you can reach out to the organizers at any time.
@ -1051,6 +1049,7 @@ en:
Verify_Account: In order to confirm that you are a real person and that we will be able to contact you later, please verify your email address. We will send you an email that will allow you to continue with the registration process. Verify_Account: In order to confirm that you are a real person and that we will be able to contact you later, please verify your email address. We will send you an email that will allow you to continue with the registration process.
facebook_sign_in: Alternatively you can sign in using your Facebook account and skip waiting for us to send you an email. facebook_sign_in: Alternatively you can sign in using your Facebook account and skip waiting for us to send you an email.
can_provide_housing: Hosting visiting conference attendees is an important part of Bike!Bike!, it allows many people who would not normally be able to afford the cost of accommodations the chance to come to the conference and lets attendees really get to know our city and its residents. You will need to grant access to your home to guests overnight keeping in mind that events can sometimes go late into the evening. If your home will not be accessible during the day you should make sure to clearly communicate this with your guests. can_provide_housing: Hosting visiting conference attendees is an important part of Bike!Bike!, it allows many people who would not normally be able to afford the cost of accommodations the chance to come to the conference and lets attendees really get to know our city and its residents. You will need to grant access to your home to guests overnight keeping in mind that events can sometimes go late into the evening. If your home will not be accessible during the day you should make sure to clearly communicate this with your guests.
not_attending: If you are only providing housing and would not like to receive further updates about the conference, check this box.
host: host:
address: Your address and phone number will be shared with your guests and conference organizers. address: Your address and phone number will be shared with your guests and conference organizers.
space: How much space do you have to share? space: How much space do you have to share?
@ -1079,6 +1078,7 @@ en:
quiet: Quiet household quiet: Quiet household
pets: House has dogs or cats pets: House has dogs or cats
can_provide_housing: I can provide housing can_provide_housing: I can provide housing
not_attending: I will not be attending the conference
questions: questions:
bike: bike:
large: Large large: Large

2
config/locales/es.yml

@ -817,6 +817,7 @@ es:
Policy_Agreement: Asegurar que todos los asistentes se sientan bienvenidos, seguro y respetada en todo momento es especialmente importante para todos nosotros. Por favor asegúrese de que plenamente ha leído y entendido nuestra política de espacios más seguros a continuación, si tiene alguna pregunta o preocupación que usted puede llegar a los organizadores en cualquier momento. Policy_Agreement: Asegurar que todos los asistentes se sientan bienvenidos, seguro y respetada en todo momento es especialmente importante para todos nosotros. Por favor asegúrese de que plenamente ha leído y entendido nuestra política de espacios más seguros a continuación, si tiene alguna pregunta o preocupación que usted puede llegar a los organizadores en cualquier momento.
facebook_sign_in: De manera alternativa puedes registrarte usando tu cuenta de Facebook y así evitarás tener que esperar a que te enviemos un correo electrónico facebook_sign_in: De manera alternativa puedes registrarte usando tu cuenta de Facebook y así evitarás tener que esperar a que te enviemos un correo electrónico
can_provide_housing: Alojar a lxs asistentes a la conferencia es una parte importante de Bike!Bike!, proporciona a mucha gente que normalmente no podría costear el hospedaje, la oportunidad de venir a la conferencia, permitiéndoles conocer nuestra ciudad y a sus residentes. Tendrás que conceder acceso a tu casa a lxs huéspedes durante la noche, teniendo en cuenta que los eventos pueden terminar hasta muy tarde. Si no se puede acceder a tu casa durante el día, debes asegurarte de comunicar estoy muy claramente a tus invitadxs. can_provide_housing: Alojar a lxs asistentes a la conferencia es una parte importante de Bike!Bike!, proporciona a mucha gente que normalmente no podría costear el hospedaje, la oportunidad de venir a la conferencia, permitiéndoles conocer nuestra ciudad y a sus residentes. Tendrás que conceder acceso a tu casa a lxs huéspedes durante la noche, teniendo en cuenta que los eventos pueden terminar hasta muy tarde. Si no se puede acceder a tu casa durante el día, debes asegurarte de comunicar estoy muy claramente a tus invitadxs.
not_attending: Si sólo está proporcionando vivienda y no desea recibir más actualizaciones sobre la conferencia, marque esta casilla.
Verify_Account: Con el fin de confirmar que eres una persona real y que podremos contactarte posteriormente, te pedimos que por favor verifiques tu dirección de correo electrónico. Te enviaremos un mensaje para que puedas continuar con el proceso de pre-registro. Verify_Account: Con el fin de confirmar que eres una persona real y que podremos contactarte posteriormente, te pedimos que por favor verifiques tu dirección de correo electrónico. Te enviaremos un mensaje para que puedas continuar con el proceso de pre-registro.
Pre_Registration_Details: Al completar el proceso de pre-registro nos estás haciendo saber que estás interesad@ en asistir, lo que nos permite contactarte cuando tengamos noticias, y planear mejor [el evento] sabiendo quienes podrían venir. Una vez que el registro esté completamente abierto, necesitaremos hacerte algunas preguntas más en donde podrás confirmar si asistirás o no. Pre_Registration_Details: Al completar el proceso de pre-registro nos estás haciendo saber que estás interesad@ en asistir, lo que nos permite contactarte cuando tengamos noticias, y planear mejor [el evento] sabiendo quienes podrían venir. Una vez que el registro esté completamente abierto, necesitaremos hacerte algunas preguntas más en donde podrás confirmar si asistirás o no.
Registration_Details: Al completar el proceso de registro, estás confirmándonos que vendrás, lo que nos permite contactarte cuando tengamos noticias y nos posibilita planear mejor el hospedaje al saber cuántas personas vendrán. Una vez registradx, tendrás la opción de acceder a facilitar tu propio taller, y a ver detalles de los talleres ya existentes. Si ya estás registradx o preregistradx, puedes utilizas esta forma de inscripción y acceder a tu cuenta ó actualizarla. Registration_Details: Al completar el proceso de registro, estás confirmándonos que vendrás, lo que nos permite contactarte cuando tengamos noticias y nos posibilita planear mejor el hospedaje al saber cuántas personas vendrán. Una vez registradx, tendrás la opción de acceder a facilitar tu propio taller, y a ver detalles de los talleres ya existentes. Si ya estás registradx o preregistradx, puedes utilizas esta forma de inscripción y acceder a tu cuenta ó actualizarla.
@ -839,6 +840,7 @@ es:
payment_confirm: Estás por confirmar tu pago de %{amount} para el registro. payment_confirm: Estás por confirmar tu pago de %{amount} para el registro.
workshops: Ahora puedes revisar los talleres propuestos e incluso proponer uno si quieres. workshops: Ahora puedes revisar los talleres propuestos e incluso proponer uno si quieres.
can_provide_housing: Puedo proporcionar hospedaje can_provide_housing: Puedo proporcionar hospedaje
not_attending: Yo no asistirá a la conferencia
questions: questions:
food: food:
meat: Carnívorx meat: Carnívorx

Loading…
Cancel
Save