'module' object has no attribute 'urlpatterns'

2013-10-28 Thread abhijeet shete
uot; app. I can't directly import urls module from django project in my app because it is independent or I don't have direct access to urls module. Any help will be highly appreciated. Thanks in advance. Thanks and Regards. Abhijeet Shete -- You received this message because you a

Re: hello everyone error in python

2013-08-23 Thread abhijeet shete
Hi, Please provide more details about the error. Like what you are trying to do or which part of your code is raising this error ? On Fri, Aug 23, 2013 at 3:24 PM, Shru wrote: > error :'str' object is not callable > > error location :C:\Python27\lib\site-packages\django\core\handlers\b

AttributeError: '__proxy__' object has no attribute 'decode'

2013-08-13 Thread abhijeet shete
x else '' for x in args) * *AttributeError: '__proxy__' object has no attribute 'decode'* Any help will be highly appreciated. Thanks and regards. Abhijeet Shete -- You received this message because you are subscribed to the Google Groups "Django users&qu

ImportError: No module named 'exceptions' - Python3

2013-08-11 Thread abhijeet shete
hon3 shell but there also I am getting same error. Is there any problem with my code or did I missed something while porting or python3 itself has some problem while importing exceptions ? Thanks and Regards. Abhijeet Shete -- You received this message because you are subscribed to the Google Gr

Re: Query Set and Output

2013-08-07 Thread abhijeet shete
e. In your template if you want to display only text from Excuse then use *output. *in this case your fieldname is text so use *output.text *instead of just * output*. {{ output.text }} Regards. Abhijeet Shete Software Engineer | mquotient | Mobile +91.9860219715 On Wed,

Re: Unable to open database.

2013-07-25 Thread abhijeet shete
Hi Nigel You have just given the path of db but you need to mention db name in the DATABASES field of settings file. > > 'NAME': '/myproject/database/sqlite3', > 'NAME': '/myproject/database/sqlite3/example.db', Regards. Software Engineer | mquotient | Mobile +91.9860219

Re: forloop breaking

2013-06-27 Thread abhijeet shete
umn it should not display even its > heading by any means with html, in python. > Regards. Abhijeet Shete Software Engineer | mquotient | Mobile +91.9860219715 -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe fr

Re: Django import error (Please reply soon)

2013-06-20 Thread abhijeet shete
pe it will work. > INSTALLED_APPS = ( > 'django.contrib.auth', > 'django.contrib.contenttypes', > 'django.contrib.sessions', > 'django.contrib.sites', > 'django.contrib.messages', > 'django.contrib

Re: Upload csv file

2013-04-24 Thread abhijeet shete
According to form you used in your template it will send only csv file after clicking on submit button. {% csrf_token %} Submit If you want to access Nome and Sobrenome in views on submit button, then you need to pass these inputs in the same form you used for submit as {% csr

Re: Upload csv file

2013-04-24 Thread abhijeet shete
According to form you used in your template it will send only file {% csrf_token %} Submit -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to django-u

Re: Upload csv file

2013-04-24 Thread abhijeet shete
it(';') 2. You cant directly access model fields you need to access them with model object. Nome = line[0] # wrong report.Nome = line[0] # Correct report.Sobrenome = line[1] Cheers. Abhijeet Shete -- You received this message because you are subscribed to the Go

Re: Upload csv file

2013-04-24 Thread abhijeet shete
Can you please briefly explain your model structure and how you are trying to save csv in MongoDB so that we can check whats going wrong. > Cheers. Abhijeet Shete -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe fr

Re: Delivery Status Notification (Failure)

2013-03-11 Thread abhijeet shete
Hi Jasmine, First if you are asking about the same question then continue in same thread don't start with new thread every time. How you created app using django's startapp command or manually ? Normally if apps folder doesn't contain __init__.py file then it gives this error while execut

Re: Errors in my first django app

2013-03-11 Thread abhijeet shete
ith label polls could not be found. Are you sure your > INSTALLED_APPS setting is correct? > > > Regards.. Abhijeet Shete -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving

Re: Error: App with label world could not be found. Are you sure your INSTALLED_APPS setting is correct?

2013-03-11 Thread abhijeet shete
Hi Jasmin, Looks like you haven't added your app 'polls' in 'settings.py' under INSTALLED_APPS. Check whether you added your app or not. If not add it. Regards. Abhijeet On Mon, Mar 11, 2013 at 5:05 PM, jesmine chaudhuri < jesminechaudhur...@gmail.com> wrote: > Error: App with label polls

Re: Begginer

2013-02-27 Thread abhijeet shete
Hi Akshay, Django's online documentation is very good. Here is the link for documentation. https://docs.djangoproject.com/en/1.4/ On Wed, Feb 27, 2013 at 1:59 PM, Akshay Ramesh wrote: > Hi I am new to Djnago and would like to have some help from you. Where > should I start from ? > Cheer