Sha256: 3f6687afca8fcad5ed73c8b37af40aafc655e18c521b8c03e83b3e5b37e98afc

Contents?: true

Size: 345 Bytes

Versions: 2

Compression:

Stored size: 345 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, edit_user_path(user)
				%td= user.username
				%td= user.email

Version data entries

2 entries across 2 versions & 1 rubygems

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