django中有没有类似admin的web2py
这就是我想做的。我想使用 mod_wsgi 在虚拟主机中加载 django 以及所有可用的 django 项目。实际上我想要的是
将所有 django 项目放在一个目录中,例如 $HOME/mydjango。我会将所有目录列表作为基本 url 加载到视图中,并且每个目录都将按照 localhost/{{django_app_name}} 之类的方式进行访问。我想我可以在我的视图中使用目录设置和 chdir 覆盖 DJANGO_SETTINGS_MODULE 。但我坚持如何检查请求哪个应用程序,以便我可以为此类请求加载该应用程序的模块。我是新手,所以非常感谢任何帮助。我希望我的问题很清楚。
它并不完全像 web2py 的管理,但如果有人知道类似的事情,如果你也向我指出这一点,我会很高兴。
提前致谢
Here is what I wanted to do. I want to load django in virtual host with mod_wsgi with all available django projects. Practically what I want is
I have all my django projects inside a directory say $HOME/mydjango. I will load all the directory listing into views as base url and each directory will be accessed as say something like localhost/{{django_app_name}}. I think I can overwrite the DJANGO_SETTINGS_MODULE with directory settings and chdir in my views. But I am stuck at how to check which app is requested so that I can load module of that app for such request. I am newbie so any help is appreciated. I hope I am clear with my question.
It's not toally like web2py's admin but if someone know of similar thing, I will be happy if you point me towards that as well.
Thanks in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,有。虽然有点有限,但很好地达到了目的。
http://sramana.in/web2py-instant-admin/
Yes there is. A bit more limited yet serves the purpose pretty well.
http://sramana.in/web2py-instant-admin/