Re: Django Integrate custom apps with each other

2015-03-26 Thread aRkadeFR
Hello, Everything is an application in Django, and you can see them in settings.INSTALLED_APPS. Then you can include your app models/forms/etc. from anywhere else in the project containing the previous app. To check if the app is registrered or not, you can use the Django Application (new in Dj

Django Integrate custom apps with each other

2015-03-26 Thread Eduardo Pascoal
Hi everyone, I am a Django newbie and I'm facing the problem related with binding applications. My intention is to make a new functionality to manage comments (i don't want to use disqus) and for that reason i want to create an application and integrate with another one that i've created in fi