RoR: Best way to build 'dashboard' type page? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-18T00:09:39Z http://stackoverflow.com/feeds/question/318018 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/318018/ror-best-way-to-build-dashboard-type-page 2 RoR: Best way to build 'dashboard' type page? Jason Miesionczek 2008-11-25T16:36:46Z 2008-12-07T19:01:21Z <p>In the admin section of a website i am building i would like to put together a dashboard page, or 'quick look' type page where the most recent changes/additions/etc in several different areas can be viewed.</p> <p>I was thinking the best way to do this would be to use partials and have each partial contain the markup for the data i need to display. </p> <p>My question is, is this the best approach? and if so, how do i separate the logic and presentation of these partials? For instance how do i put the logic in the dashboard controller, but keep the presentation in the partial rhtml?</p> http://stackoverflow.com/questions/318018/ror-best-way-to-build-dashboard-type-page/318082#318082 2 Answer by jcapote for RoR: Best way to build 'dashboard' type page? jcapote 2008-11-25T16:53:29Z 2008-11-25T16:53:29Z <p>Partials are definitely the way to go, especially when you can pass in arbitrary data into them to make them do stuff. To answer your logic separation issue specifically, you would use: </p> <pre><code>&lt;%= render :partial =&gt; "name_of_partial", :locals =&gt; { :some_var =&gt; @data_from_model } %&gt; </code></pre> <p>Then, inside your partial, you'd have access to @data_from_model via the some_var variable.</p> http://stackoverflow.com/questions/318018/ror-best-way-to-build-dashboard-type-page/318108#318108 1 Answer by bradheintz for RoR: Best way to build 'dashboard' type page? bradheintz 2008-11-25T17:01:56Z 2008-11-25T17:01:56Z <p>The controller should be responsible for retrieving the data you need to present (and, usually implicitly, passing it to the view). Build no HTML here.</p> <p>The partials, of course, are where you figure out presentation - you can make it a list, graph, Google Visualization widget, a single number in 40-point font, whatever.</p> <pre><code>&lt;%= render :partial =&gt; 'new_users_last7days', ;locals =&gt; { :new_user_count =&gt; @new_users.size } %&gt; </code></pre>