有没有用 Django 制作的 sql 管理面板? - 姜戈
我正在将 SQL Server 2005 与 Django 一起使用,我想知道是否有人尝试过使用 Django 创建 SQL 管理面板。
拥有的话会非常有用!
I'm using SQL Server 2005 with Django, I'm wondering if anyone has ever attempted to create an admin panel for SQL using Django.
Would be quite useful to have!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以从控制台 ./manage.py informatedb并自动生成模型文件。然后,您可以添加管理文件以按照您想要的方式呈现数据。
You can ./manage.py inspectdb from the console and it automatically generates model files. You may then add the admin files to present the data how you want it.