有哪些应用程序或附加组件用于自定义 Django Admin
我正在寻找有关 Django 管理员必须拥有的东西或人们倾向于使用的东西的列表或只是建议。
我对在 Django 管理中的 TextAreas 添加 Wysiwyg 或 Markdown 编辑器特别感兴趣。
有什么建议吗?
Im looking for a list or just suggestions on some Django Admin must haves or things that people tend to use.
I'm particularly interested in adding a Wysiwyg or Markdown Editor to the the TextAreas in the Django Admin.
Any suggestions?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
有许多应用程序将所见即所得编辑器添加到 Django 管理中心,例如 django-wysiwyg。 Django 维基。其他一些非常适合管理自定义的 django 应用程序是 django-admin-tools 和 grappelli。除了对用户界面进行全面检查之外,grappelli 还支持包含所见即所得编辑器。与往常一样,Django 文档通常是一个很好的第一站。
就我个人而言,我特别喜欢 grappelli,它在许多 Django 项目中都得到了很好的应用,包括 mezzanine 还有一些我自己的!以下是 Django 管理员的改版预览:
There are a number of apps that add wysiwyg editors to Django's admin, such as django-wysiwyg. There are also a couple of articles on this subject in Django's wiki. Some other django apps that are great for admin customization are django-admin-tools and grappelli. Beyond being a general ovehaul of the user interface, grappelli also includes support for the inclusion of a wysiwig editor. And as always, the Django docs are usually a good first stop.
Personanlly, I'm particularly fond of grappelli, it's been used to great effect on a number of Django projects, including mezzanine and a few of my own! Here's a preview of the facelift it gives Django's admin:
您看过这个列表吗?
Have you take a look at this list ?
我自己使用 django-adimin-tools,它可以让您创建自定义菜单和自定义仪表板以及自定义 CSS。这是它看起来几乎开箱即用的样子。项目是可拖动的。更多信息请此处。
我还使用了 django-admin-bootstrapped 它使用 twitter bootstrap 让管理看起来更好。有关它的更多信息此处。
Grapelli 可能是最受欢迎的,我一直在我的 Mezzanine 应用程序,但尚未在普通 Django 应用程序中尝试过。
I use the django-adimin-tools myself, it lets you create custom menus and custom dashboard as well as custom css. Here is what it looks like pretty much out of the box. Items are draggable. More on that here.
I also used django-admin-bootstrapped which uses twitter bootstrap to make the admin look nicer. more information on it here.
Grapelli is probably the most popular though and I have been using it in my Mezzanine apps but haven't yet tried it in a vanilla Django app as of yet.