czue / django-wedding-website

A django-powered wedding website and guest-management system
Other
458 stars 273 forks source link

+1? #23

Closed dillwishlist closed 5 years ago

dillwishlist commented 5 years ago

Great project, I'm using it for my wedding website. Is there a way to track +1s in the current code?

Thanks, Alexander

czue commented 5 years ago

There's not explicitly. What we did for our wedding was just create Guests named "Guest" attached to a Party with the person who you are giving the +1. It worked pretty well!

Let me know if that's sufficient for your use case.

dillwishlist commented 5 years ago

That was my initial thought, but I don't see any way to mark attendance on a guest by guest basis, only the whole party. Was that an issue for you?

czue commented 5 years ago

There is an is_attending field on the Guest model here

You can also see how this gets set from the RSVP page (here's an example)

dillwishlist commented 5 years ago

Ah okay, I misremembered that. That works, thanks!