如何在我的 django 应用程序中使用完整日历



我已经下载了完整日历。我想在我的 django 应用程序中使用此应用程序。我

更改了以下文件。

1)Views.py(增加了打开完整日历默认.html文件的函数)

2) urls.py(传递网址)

我已经复制了默认.html文件和我的 django 应用程序的模板文件夹中的其他文件。

当我双击默认.html时,我可以看到日历。但是通过我的 django 应用程序

日历不工作。我得到一个空白页。

我没有收到任何错误。但不显示日历。

您错过了在 html 页面中插入日历标签。它看起来像

{% fullcalendar_css %}        
{% fullcalendar_print_css %}        
{% fullcalendar_jquery %}
{% fullcalendar_jquery_ui %}
{% fullcalendar_javascript %}
{% calendar_init calendar_config_options %}

此外,您应该 settings.py 文件的installed_apps中添加fullcalendar。您可以参考以下链接以获取更多信息:https://github.com/rodrigoamaral/django-fullcalendar

相关内容

  • 没有找到相关文章

最新更新