For specific attributes of an event to be displayed in the \'fullCalendar\' matrix I would like to add icons to show them, for \'completed\' an (i) button, or an URL symbol
With this you can add text or HTML to the title of your events in Fullcalendar
eventRender: function(event, element) { var icon = 'The icon you want, HTML is possile'; $(element).find('.fc-time').append(icon); }