Sha256: da2fab673f34865358d98c2b5542a36654e94444f3cbbc951810529529935c60

Contents?: true

Size: 623 Bytes

Versions: 9

Compression:

Stored size: 623 Bytes

Contents

<% cont=0; %>

<% User.alphabetic.all.each do |user| %>

	<% if (cont%2) == 0
			cont+=1; %>
	  	<div class="wrap_post">
	<% end %>

			<div class="post_browse">
			<div class="post_picture"><%= link_to (image_tag(user.logo.url , :size => "50x50", :alt => user.name )),user  %></div>
			<div class="post_browse_content_people content_size">
				<div class="post_browse_title content_size" ><%=link_to(user.name, user)%></div>
				<div class="content_size">+ <a href="#">Add as contact</a></div>
			</div>
			</div>

	<% if ((cont%2) == 0) 	%>
			</div>
	<% end %>

<% end %>


<% if ((cont%2) != 0) 	%>
		</div>
<% end %>

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
social_stream-0.2.3 app/views/users/_index.html.erb
social_stream-0.2.2 app/views/users/_index.html.erb
social_stream-0.2.1 app/views/users/_index.html.erb
social_stream-0.2.0 app/views/users/_index.html.erb
social_stream-0.1.7 app/views/users/_index.html.erb
social_stream-0.1.6 app/views/users/_index.html.erb
social_stream-0.1.5 app/views/users/_index.html.erb
social_stream-0.1.4 app/views/users/_index.html.erb
social_stream-0.1.3 app/views/users/_index.html.erb