aboutsummaryrefslogtreecommitdiffstats
path: root/app/views/shared/_tweet.html.haml
diff options
context:
space:
mode:
authorre4k <re4k@re4k.info>2013-03-28 02:11:40 +0900
committerre4k <re4k@re4k.info>2013-03-28 02:11:40 +0900
commit295db76b7643868456eafb98cf760a5e383b41ed (patch)
tree054845af698810440ce1b96324618fb05ee67cb2 /app/views/shared/_tweet.html.haml
parentb4972590475eb595bc88f6ee47125fe8ca6e1fb2 (diff)
downloadaclog-295db76b7643868456eafb98cf760a5e383b41ed.tar.gz
Refactor
Diffstat (limited to 'app/views/shared/_tweet.html.haml')
-rw-r--r--app/views/shared/_tweet.html.haml9
1 files changed, 4 insertions, 5 deletions
diff --git a/app/views/shared/_tweet.html.haml b/app/views/shared/_tweet.html.haml
index d98fdbb..3f76f1a 100644
--- a/app/views/shared/_tweet.html.haml
+++ b/app/views/shared/_tweet.html.haml
@@ -26,11 +26,10 @@
%span.type= type
%dd
%ul.inline
- - actions.take(params[:controller] == "users" && params[:action] == "show" ? actions.count : 20).each do |a| |
- - m = a.user || User.new
+ - actions.take(params[:action] == "show" ? actions.count : 20).each do |a|
+ - m = a.user
%li
- - if m.screen_name
+ - if m
= link_to image_tag(m.profile_image_url, :alt => m.screen_name, :title => m.name), :controller => "users", :action => "best", :screen_name => m.screen_name
- else
- = image_tag(m.profile_image_url, :alt => m.name, :title => m.name)
-
+ = image_tag asset_path("missing_profile_image.png"), :alt => "Missing User: #{a.user_id}", :title => "Missing User: #{a.user_id}"