Currently I have two date attributes in the same model (@ticket.starts & @ticket.target). I want to be able to show just the target dates on the calendar and just the start dates without spanning them over multiple days. I'm able to do it for one of them:
has_event_calendar :start_at_field => 'target', :end_at_field => 'target'
I'd like to have them show up as different colors as well, as shown in the screenshot that linked in the readme.
How would I go about getting this to work?
Thanks!