diff --git a/app/controllers/projects_controller.rb b/app/controllers/projects_controller.rb
index 0494e1820def73c8489158c60e43c5b702d999d3..0639982c6e7bcaf4ecfd00d7474f9cb12ad0493c 100644
--- a/app/controllers/projects_controller.rb
+++ b/app/controllers/projects_controller.rb
@@ -64,21 +64,8 @@ def update
 
   def show
     return render "projects/empty" unless @project.repo_exists?
-    @date = case params[:view]
-            when "week" then Date.today - 7.days
-            when "day" then Date.today
-            else nil
-            end
-
-    if @date
-      @date = @date.at_beginning_of_day
-
-      @commits = @project.commits_since(@date)
-      @messages = project.notes.since(@date).order("created_at DESC")
-    else
-      @commits = @project.fresh_commits
-      @messages = project.notes.fresh.limit(10)
-    end
+    limit = (params[:limit] || 40).to_i
+    @activities = @project.updates(limit)
   end
 
   #
diff --git a/app/views/dashboard/index.html.haml b/app/views/dashboard/index.html.haml
index a8b7f2538d3a9c88ab9dbda3dca4b76caa0ec4f1..e25ec249ef50c129ced9bfb870f459dd2154f503 100644
--- a/app/views/dashboard/index.html.haml
+++ b/app/views/dashboard/index.html.haml
@@ -28,7 +28,7 @@
               = image_tag gravatar_icon(update.author_email), :class => "left", :width => 40
               %span.update-title
                 - if update.kind_of?(Grit::Commit) 
-                  %span.tag.commit= update.head.name
+                  %span.right.tag.commit= update.head.name
                 = dashboard_feed_title(update)
               %span.update-author
                 %strong= update.author_name
diff --git a/app/views/projects/show.html.haml b/app/views/projects/show.html.haml
index 97ac92d149d3794d66a9663c6b1f990f77e94e0f..0530736fb4c7d8ff59b962dbf6d5e2652cf80251 100644
--- a/app/views/projects/show.html.haml
+++ b/app/views/projects/show.html.haml
@@ -5,7 +5,7 @@
     %span>
     Activities
   .project-box.project-updates.ui-box.ui-box-small.ui-box-big
-    - @project.updates(20).each do |update|
+    - @activities.each do |update|
       = render "projects/feed", :update => update, :project => @project
 
 :javascript