<%= link_to image_tag(url_to_avatar(org), :width => '78', :height => '78', :alt => '组织logo'), organization_path(org), :class => "linkGrey2" %>
<% if org.domain.nil? %>
<%= link_to org.name, organization_path(org), :class => 'f16 linkBlue' %>
<% else %>
<%= org.name %>
<% end %>
<%= org.description %>
创建者:<%= link_to User.find(org.creator_id), user_path(org.creator_id), :class => 'linkGrey2', :target => '_blank' %>
创建时间:<%= format_activity_day(org.created_at) %> <%= format_time(org.created_at, false) %>
您的身份:<%= User.current.admin_of_org?(org) ? "组织管理员" : "组织成员" %>