Re: PLEASE HELP ME KNOW HOW TO ARRANGE INSTALLED APPS.

2022-10-29 Thread Ammar Mohammed
Hello Dear You should name your apps without the app word in the end Example : INSTALLED_APPS = [ "apps.store'', " apps.core", ] This will definitely work Regards On Wed, 19 Oct 2022, 7:30 AM regan opere, wrote: > Many, thanks for the reply. However, I have two apps in the directory > c

Re: PLEASE HELP ME KNOW HOW TO ARRANGE INSTALLED APPS.

2022-10-19 Thread johnpaul mulongo
You need to give the django apps you created unique names (try to see them as separate entities), in your case this would be 'core' and 'store', then you need to add them to the INSTALED_APPS list like so in the settings file: [..., 'core.apps.CoreConfig', 'store.apps.StoreConfig', ] On Wed, Oct

Re: PLEASE HELP ME KNOW HOW TO ARRANGE INSTALLED APPS.

2022-10-18 Thread regan opere
Many, thanks for the reply. However, I have two apps in the directory called Apps.. so when I name the apps in the settings using tiles.apps.TilesConfig' it still does'nt work naming them like this: 'apps.core.apps', 'apps.store.apps', also still giver the error: django.core.exceptio

Re: PLEASE HELP ME KNOW HOW TO ARRANGE INSTALLED APPS.

2022-10-18 Thread Chukwudi Onwusa
Lets take App Directory name tiles. So inthe installed app list it will be 'tiles.apps.TilesConfig', Or put simply 'tiles', Hope it helps . On Tue, Oct 18, 2022, 06:16 regan opere wrote: > Hello, I am new to django and I am still learning. > I have created two apps core and store and I have re

PLEASE HELP ME KNOW HOW TO ARRANGE INSTALLED APPS.

2022-10-17 Thread regan opere
Hello, I am new to django and I am still learning. I have created two apps core and store and I have registered them in the settings file of my root directory. This is the error I get: django.core.exceptions.ImproperlyConfigured: Application labels aren't unique, duplicates: apps my settings lo

Re: installed apps

2016-12-27 Thread Rasika
Thank you so much On Tuesday, December 27, 2016 at 3:55:21 PM UTC+5:30, Rasika wrote: > > hello all > my question is,on my system where all installed apps are located by django. > If i want to modify those where I can find those like admin app,auth app > etc. > and how the aut

Re: installed apps

2016-12-27 Thread M Hashmi
work with the source. This is good approach to understand any framework by looking at its default code. Good luck. Mudassar On Tue, Dec 27, 2016 at 3:25 AM, Rasika wrote: > hello all > my question is,on my system where all installed apps are located by django. > If i want to modify th

installed apps

2016-12-27 Thread Rasika
hello all my question is,on my system where all installed apps are located by django. If i want to modify those where I can find those like admin app,auth app etc. and how the auth_user table saves the superuser and the user created by admin for this i have to understand the admin app first

Re: django tutorial part 2: clarification about INSTALLED APPS

2016-05-16 Thread Mike Dewhirst
On 17/05/2016 1:42 AM, Asi Dimbez wrote: Hi, I'm a newbie, there is thing not clear to me in the tutorial, part 2. I left part 1 with poll app working ok. In the tutorial, part 2, I read about INSTALLED_APPS :" That holds the names of all Django applications that are activated in this Django in

django tutorial part 2: clarification about INSTALLED APPS

2016-05-16 Thread Asi Dimbez
Hi, I'm a newbie, there is thing not clear to me in the tutorial, part 2. I left part 1 with poll app working ok. In the tutorial, part 2, I read about INSTALLED_APPS :" That holds the names of all Django applications that are activated in this Django instance.." Now, poll app worked from part 1

Re: Installed apps settings, necessary?

2007-02-10 Thread voltron
Thank you all for the clarification! On Feb 10, 5:32 pm, "James Bennett" <[EMAIL PROTECTED]> wrote: > On 2/9/07, voltron <[EMAIL PROTECTED]> wrote: > > > what are the advantages of adding the apps to the settings file? > > Several things: > > * If an app is never listed in INSTALLED_APPS, syncdb

Re: are the Installed apps settings necessary?

2007-02-10 Thread voltron
Aha! Thanks for the answers. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to [EM

Re: are the Installed apps settings necessary?

2007-02-10 Thread daev
On Feb 10, 8:41 pm, "canen" <[EMAIL PROTECTED]> wrote: > You don't need INSTALLED_APPS for views, it's more for models if I am > not mistaken, for example, syncdb won't work if your app is not in > INSTALLED_APPS. Yes. Its true --~--~-~--~~~---~--~~ You received t

Re: are the Installed apps settings necessary?

2007-02-10 Thread canen
You don't need INSTALLED_APPS for views, it's more for models if I am not mistaken, for example, syncdb won't work if your app is not in INSTALLED_APPS. voltron wrote: > I posted this yesterday, but It did not show up, strange. > > According to the manual, one has to add apps to the INSTALLED_APP

Re: Installed apps settings, necessary?

2007-02-10 Thread James Bennett
On 2/9/07, voltron <[EMAIL PROTECTED]> wrote: > what are the advantages of adding the apps to the settings file? Several things: * If an app is never listed in INSTALLED_APPS, syncdb will never see it and so will never install DB tables for its models. * If an app is never listed in INSTALLED_AP

Re: Installed apps settings, necessary?

2007-02-10 Thread James Tauber
They need to be in INSTALLED_APPS for syncdb to pick up the models and make any necessary additions to the database. There may be other uses as well (contrib.admin might use it too, for example) but I'm not sure. James On 09/02/2007, at 11:23 AM, voltron wrote: > > Hi all, going bto instal

Installed apps settings, necessary?

2007-02-09 Thread voltron
Hi all, going bto install apps, one must add them to ty the book, the INSTALLED_APPS tuple setting, I noticed however that one that one can wire up views and in app directories and they work fine even if not added to the tuple in the settings file. My question: what are the advantages of adding

are the Installed apps settings necessary?

2007-02-09 Thread voltron
I posted this yesterday, but It did not show up, strange. According to the manual, one has to add apps to the INSTALLED_APPS setting tuple to make the usable in a project. I have created several test apps with views wired to urls in the projects url conf file, I was able to call up all urls witho

Re: Installed Apps in settings.py

2006-07-31 Thread limodou
On 7/31/06, Technofreak <[EMAIL PROTECTED]> wrote: > > > limodou wrote: > > > > > How do you create your project, using: django-admin.py startproject > > XXX? If you did like this, the settings.py should include default > > apps. > > > Ya, I did create using 'django-admin.py startproject XXX' but

Re: Installed Apps in settings.py

2006-07-31 Thread Technofreak
limodou wrote: > > How do you create your project, using: django-admin.py startproject > XXX? If you did like this, the settings.py should include default > apps. > Ya, I did create using 'django-admin.py startproject XXX' but I din't get the default apps included in the settings.py. Thats the b

Re: Installed Apps in settings.py

2006-07-30 Thread limodou
On 7/31/06, Parthan SR <[EMAIL PROTECTED]> wrote: > Hi, > > Am trying out my first hands with Django and was following the tutorial > given in the documentation. I have created a project and in the settings.py > file, as it is said in the tutorial, there is no default install

Installed Apps in settings.py

2006-07-30 Thread Parthan SR
Hi, Am trying out my first hands with Django and was following the tutorial given in the documentation. I have created a project and in the settings.py file, as it is said in the tutorial, there is no default installed apps. It is like... INSTALLED_APPS = ( ) The tutorial says the following