Switch to side-by-side view

--- a/HelloForge/helloforge/main.py
+++ b/HelloForge/helloforge/main.py
@@ -138,8 +138,9 @@
         else:
             search_query = '''%s
             AND is_history_b:%s
+            AND project_id_s:%s
             AND mount_point_s:%s''' % (
-                q, history, c.app.config.options.mount_point)
+                q, history, c.project._id, c.app.config.options.mount_point)
             results = search.search(search_query) 
             if results: count=results.hits
         return dict(q=q, history=history, results=results or [], count=count)