Fullcalendar redners两个日历

时间:2019-01-06 23:38:55

标签: fullcalendar

我正在尝试对我的网站实施Fullcalendar,它正在运行,但是在我的常规日历下显示了第二个非主题日历。第二个日历仅包含表中月份的日期,不包含任何数据。 这是我的日历脚本:

 $(document).ready(function() {

$('#calendar').fullCalendar({
  header: {
    left: 'prev',
    center: 'title',
    right: 'next'
  },
},
  locale: 'hu',
  navLinks: true,
  editable: false,
  eventLimit: true, 
  defaultView: 'listMonth',
  contentHeight: 'auto',
  events: [
      {% for item in dates %}
    {
      title: '{{ item.page.szerzo }}: {{ item.page }} ',
      start: '{{ item.datum|date:"c" }}',
       url: '{{ item.jegylink }}',
    },
     {% endfor %}
  ]
});

});

这是表: Picture of the table

如何使其消失? 感谢您的帮助!

0 个答案:

没有答案