Re: How to check appname via Django commands?

2015-01-23 Thread Scot Hacker
On Saturday, January 17, 2015 at 1:38:32 AM UTC-8, Sugita Shinsuke wrote: > > Hi there. > > I use Django 1.6 version. > > The database of Django store the information of application. > So, I know that if I change the hierarchy of the Django project folders, > some trouble occurs. > The

Re: How to check appname via Django commands?

2015-01-22 Thread Collin Anderson
Hi, I don't think the project name is stored in the database. You can sometimes access the project name this way: settings.SETTINGS_MODULE.split('.')[0] Collin On Tuesday, January 20, 2015 at 6:33:38 AM UTC-5, Sugita Shinsuke wrote: > > Hello Vijay > > Thank you for replying. > > But, I want

Re: How to check appname via Django commands?

2015-01-20 Thread Sugita Shinsuke
Hello Vijay Thank you for replying. But, I want to know the project name of django not app name. 2015年1月17日土曜日 23時18分46秒 UTC+9 Vijay Khemlani: > > What problem are you having exactly? > > Also I'm not sure what do you mean by "hierarchy" of the project folders, > do you mean the order the

Re: How to check appname via Django commands?

2015-01-17 Thread Vijay Khemlani
What problem are you having exactly? Also I'm not sure what do you mean by "hierarchy" of the project folders, do you mean the order the apps appear in the INSTALLED_APPS setting? On Sat, Jan 17, 2015 at 6:38 AM, Sugita Shinsuke wrote: > Hi there. > > I use Django 1.6

How to check appname via Django commands?

2015-01-17 Thread Sugita Shinsuke
Hi there. I use Django 1.6 version. The database of Django store the information of application. So, I know that if I change the hierarchy of the Django project folders, some trouble occurs. That is why, I'd like to check the name of my application. I think some of Django commands like