Problem statement
When visualizing events, a user has no idea how many people have already RSVP'd to it. We should add that information to the card using the following message:
X people attending
where X is the number of registrations to that event.

How to fix it
The code for the event card lives in app/views/events/_event.html.erb, so that's the first place you should look.
Look at the picture I shared above and think about how you would add the number of attendants.
I'd be happy to review your implementation when I have time. Please open a pull request following these steps:
- Follow this guide to setup your forked repo
- Checkout a development branch
- Implement your changes
- Open a pull request and tag me for review
Problem statement
When visualizing events, a user has no idea how many people have already RSVP'd to it. We should add that information to the card using the following message:
where X is the number of registrations to that event.
How to fix it
The code for the event card lives in
app/views/events/_event.html.erb, so that's the first place you should look.Look at the picture I shared above and think about how you would add the number of attendants.
I'd be happy to review your implementation when I have time. Please open a pull request following these steps: