如何在多个站点和相同的 url 中使用 Django 的平面页面?
我有 5 个站点,每个站点都有自己的域,在一个 django 项目下运行。目前,所有网站都有相同的联系页面,由 URL /contact/
下的 Flatpages 提供。然而,如果为每个站点创建一个联系页面,并在每个域上使用相同的 url,那就更好了。
我怎样才能用 django 的平面页面来实现这一点? (或者我应该看看别的东西?)
I have 5 sites, each on their own domain, running under one django project. Currently all the sites have the same contact page, as provided by flatpages under the url /contact/
. However it would be far nicer to create a contact page for each site, using the same url on each domain.
How can I achieve this with django's flatpages? (or should I look at something else?)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
对于 5 个不同的联系页面,您可能需要 5 个不同的平面页面条目:
我想您也可以绕过平面页面并拥有一个包含 5 个不同模板的视图。
For 5 distinct contact pages, you might need 5 different flatpages entries:
I guess you could also bypass flatpage and have one view with 5 different templates.