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

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
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 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

Re: TemplateDoesNotExist Error...

2012-11-19 Thread rmschne
Yes, with guidance from Django/Python, I am sure the error occurs there. Django/Pythyon presents the trace and the line number which causes the exception is reported to the command Line. However, I will look again at that line and all lines above. Yes, I know there is a "good" chance as the cl

Re: TemplateDoesNotExist Error...

2012-11-19 Thread Chris Cogdon
If you're sure your error appears at the "txt=" line, look at the definition for that template. There is a good chance it's trying to pull in a template (via an include, or a extends) that doesn't exist. If you need more debugging, you can always modify the LOGGING variable to drop a bunch of l

Re: TemplateDoesNotExist error when running tests in django.contrib.sitemaps.tests.basic.SitemapTests

2011-02-22 Thread Karen Tracey
On Tue, Feb 22, 2011 at 4:18 AM, sajal wrote: > Installing django from the svn trunk no more fails the tests. Perhaps > the archives should not be skipping these files? > This problem was reported in the bug tracker and has already been fixed: http://code.djangoproject.com/ticket/14990 Can't f

Re: TemplateDoesNotExist error when postmortem says it exists?

2009-03-29 Thread Russell Keith-Magee
On Mon, Mar 30, 2009 at 1:42 AM, Rob Hudson wrote: > > Wow, that was a tricky one to track down... ... > I take it that gets interpreted as a single value tuple.  D'oh!  That It does, operator precedence notwithstanding (for example, a lambda expression returning a tuple that is being used as an

Re: TemplateDoesNotExist error when postmortem says it exists?

2009-03-29 Thread Rob Hudson
Wow, that was a tricky one to track down... After putting debug output in django/template/loaders/filesystem.py I saw that filepath was set to: '/Users/rob/git/anglers/anglers/templates/('book/ search_form.html',)' I back tracked that and found that I had a trailing comma in my view code:

Re: TemplateDoesNotExist error when postmortem says it exists?

2009-03-29 Thread Rob Hudson
On Sun, Mar 29, 2009 at 8:28 AM, Karen Tracey wrote: > That generally means the permissions don't allow the code to access the > file.  You don't mention if this happens with the dev server (which would > surprise me, since you can load the template from the shell) or only with a > real web serve

Re: TemplateDoesNotExist error when postmortem says it exists?

2009-03-29 Thread Karen Tracey
On Sun, Mar 29, 2009 at 11:18 AM, Rob Hudson wrote: > > This is a stumper... > > I have a very simple view that is a wrapper around the generic view > direct_to_template. The loader finds the template as indicated in the > output "(File exists)", but yet I still get a TemplateDoesNotExist > erro

Re: TemplateDoesNotExist error

2008-02-08 Thread Marcin Mierzejewski
Hi, You have to add path to directory where you have template files. settings.py file TEMPLATE_DIR parameter. Regards, Marcin On Feb 7, 4:16 pm, Schmoopie <[EMAIL PROTECTED]> wrote: > I'm slaying the configuration bugs, slowly but surely, with your help. > > The latest one is a TemplateDoesNot