I added a div to my haml file:
%section.splunk
.splunk_results Loading splunk data...
that will later be populated by an ajax call. However, it isn't showing up in my html file, even when I restart rails and navigate to that page. My research showed that it should auto-compile when I load the page -- why isn't this so?
EDIT:
The haml file is located at myAppName/client/order_details.haml. The HTML that it should be presumably compiling to is in myAppName/public/templates/order_details.html.
public. Do you have this file in public, maybe because you use page caching or something? Basically, once a file is in the public dir, it will always be served as a static file (and Rails will not even know about it, much less re-render something)... – averell Aug 1 '12 at 14:36