How to reference a new template file defined in a custom skin?
I created a new skin called myskin
and set ASKBOT_EXTRA_SKINS_DIR accordingly. Overwriting default templates seems to work.
I want to create a custom home page, with a template called "home.html", located in this new skin, which inherits from "one_column_body.html" (defined in common).
However, in my custom app (installed along with askbot), when I tried to invoke render_to_response() on "home.html", I get this error: "TemplateDoesNotExist at /"
Comments