TemplateDoesNotExist Error on deploying

2018-01-13 Thread yingi keme
I tried deploying my app to pythonanywhere hosting service and i am getting TemplateDoesNotExist Error Everything seems to work out well with my development server. But its not working fine when hosting Anyhelp please!! Here is my View def Home(request): template = 'Home\First.html' r

Re: GeoDjango GDAL Slice Error in layer.py

2018-01-13 Thread Jason
Are you able to access any features in the layer? eg, the snippet above the one that gives you the error >>> for feat in lyr: ...print(feat.get('NAME'), feat.geom.num_points) On Friday, January 12, 2018 at 5:37:10 PM UTC-5, Justin Johnson wrote: > > > > I'm completely new to GeoDjang

Re: TemplateDoesNotExist Error on deploying

2018-01-13 Thread Kasper Laudrup
Hi Yingi, On 2018-01-13 14:46, yingi keme wrote: I tried deploying my app to pythonanywhere hosting service and i am getting TemplateDoesNotExist Error Everything seems to work out well with my development server. But its not working fine when hosting Anyhelp please!! Here is my View def

Using the ModelAdmin.inlines class, there is no DELETE button

2018-01-13 Thread FernandoJMM
Good Morning, I'm customizing the ModelAdmin class inlines attribute. The code is this. class NaveInline(admin.TabularInline): model = Nave fields = ['codigoNave', 'nave', 'tipoPuesta'] ordering = ['codigoNave'] extra = 1 class GranjaAdmin(admin.ModelAdmin): fieldsets = [

Re: want to join IRC

2018-01-13 Thread Apurva Anil Kunkulol
This is alright, but the thing is that whenever I login, I see no other users on the channel talking. I use this #django-IRC-channel to join. So I want to know if this is correct, or there's something else that needs to be done that I'm not currently. On Friday, 12 January 2018 07:43:24 UTC+5:3

Re: want to join IRC

2018-01-13 Thread Jason
That's most likely due to the channel being slow. I bet if you stayed logged in for a couple weeks you would see more activity. Or even post a question? -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop

Re: urlopen error [Errno 110] Connection timed out

2018-01-13 Thread suase9303
Yes! i can load the Url ("http://www.aaasports.co.kr/front/productlist.php?code=0010&brandcode=2&listnum=30&sort=&block=0&gotopage=1";) without issue. I think the time to load the URL is longer than any other URL, but it does not take much long. I searched for the Postman you suggested

Re: TemplateDoesNotExist Error on deploying

2018-01-13 Thread yingi keme
Thanks Kasper. It was the backslash. Thanks for saving me... Yingi Kem > On 13 Jan 2018, at 2:52 PM, Kasper Laudrup wrote: > > Hi Yingi, > >> On 2018-01-13 14:46, yingi keme wrote: >> I tried deploying my app to pythonanywhere hosting service and i am getting >> TemplateDoesNotExist Error >>

Re: TemplateDoesNotExist Error on deploying

2018-01-13 Thread Jani Tiainen
Hi, Also be careful with file names. For example windows is case-preserving but case-insensitive. You may accidentally name your templates with different casing which may lead difficult to spot problems. 13.1.2018 22.58 "yingi keme" kirjoitti: > Thanks Kasper. It was the backslash. > > Thanks f

Re: TemplateDoesNotExist Error on deploying

2018-01-13 Thread yingi keme
Okk Jani. I will take note of that too.. Thanks Yingi Kem > On 13 Jan 2018, at 10:28 PM, Jani Tiainen wrote: > > Hi, > > Also be careful with file names. For example windows is case-preserving but > case-insensitive. You may accidentally name your templates with different > casing which ma