关于在 django 中管理静态内容的简单问题
我在 django 中有一个简单的网站,其中内容是静态的。在我使用“AboutUs.html”、“OurServices.html”或“contact.html”等模板的地方..现在我想使用 django admin,这样任何人都可以使用 WYSIWYG 编辑器更改这些页面的内容(因为那些会改变这个不知道html)..我想创建一个名为StaticContent的类,类似于:
class StaticContent(models.Model):
content = models.TextField("content")
然后我教说也许django中有一些东西可以做到这一点,但我在文档中找不到任何内容。
你知道 django 是否有一些模块或其他东西来管理管理中的静态内容吗?
提前谢谢!
I have a simple website in django where the content is static. Where i use templates like "AboutUs.html" ,"OurServices.html" or "contact.html".. now i want to use the django admin so anyone could change the content for those pages using a WYSIWYG editor (cause the people who will change this dont know html).. i wanted to create a class called StaticContent, something like:
class StaticContent(models.Model):
content = models.TextField("content")
then i taught that maybe there's something in django that can do that, but i couldn't find anything in the documentation.
Do you know if django has some module or something to manage this static content in the admin?
Thxs in advance!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您正在寻找的是与 Django
http: //docs.djangoproject.com/en/dev/ref/contrib/flatpages/
What you're looking for is the flatpages app that is bundled with Django
http://docs.djangoproject.com/en/dev/ref/contrib/flatpages/