Be able to enter team members' info for a few different uses:
Auto generate a named certificate for each person
Have the required contact details for parents of each member on record
It could also be used for signing in and out
Certificates and details will be fairly straightforward. You’ll just need a new members table where
class Member < ActiveRecord::Base
belongs_to: :team, inverse_of: :members
end
and Team will need to has_many: :members, inverse_of: :team, dependent: :destroy.
Using details as sign in credentials might be a bit more tricky...
I thought it would be straightforward.
Sorry when I say signing in/out, that is of the event not the app. So when a team member arrives they are signed in and when they're finished, they sign out. Basically so we know who we have under our radar if that makes sense.
Ah I get it now :stuck_out_tongue: Yeah that would be cool.
Be able to enter team members' info for a few different uses:
I thought it would be straightforward.
Sorry when I say signing in/out, that is of the event not the app. So when a team member arrives they are signed in and when they're finished, they sign out. Basically so we know who we have under our radar if that makes sense.