Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个发送电子邮件的管理命令。在这封电子邮件中,我想包含一个注册表单的 URL,它是 CMS 中的一个 apphook 模块。
如何解析该路径的 URL?
从管理命令中,我只看到纯 URLconf,没有 Django-CMS 所做的更改。
解决了我的问题。事实证明,这些页面可能不会出现在 URLconf(或 urlpatterns)中,但reverse()仍然可以使用。
reverse()
页面名称必须使用语言代码进行修复。例如:
reverse('nl:my-profile')
该cms.appresolvers模块将完成查找页面的工作。
cms.appresolvers