Sha256: 4c49b64e355c7505aea3f5ed649cdaf6e59c04251c9bc504b1a6e0af10434592

Contents?: true

Size: 340 Bytes

Versions: 1

Compression:

Stored size: 340 Bytes

Contents

- content_for :links do
	= link_to "New User", new_user_path, class: "btn btn-default"

%table.table.table-bordered.table-striped
	%thead
		%tr
			%th Name
			%th Username
			%th Email
	%tbody
		- @users.each do |user|
			= content_tag_for(:tr, user) do
				%td= link_to user.name, user_path(user)
				%td= user.username
				%td= user.email

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
blogr-0.0.8 app/views/blogr/users/index.html.haml