Hi!
I have simple bottle app - http://yncoder.pythonanywhere.com/, with STE templates.
This code generate error "Template not found". This is obvious from Bottle doc.
@error(404)
def error404(error):
return template( '404.tpl' )
I've try this code
@error(404)
def error404(error):
return template( '/home/yncoder/infinity/404.tpl' )
It's working. But this is not good. This topic doesn't help.
Question is - how to configure paths to STE template outside the code?