diff options
author | EvyW <evy_mcr@hotmail.com> | 2015-10-01 15:12:59 -0500 |
---|---|---|
committer | EvyW <evy_mcr@hotmail.com> | 2015-10-01 15:12:59 -0500 |
commit | df62d292f5df6dffd8a0e621181632f276c0b304 (patch) | |
tree | e31a14b3be9b2edbd75bca8f9a3924201871e548 | |
parent | 289424bda4cabfa682e07059bfdc1a0c7f04c1ef (diff) |
Identing first line
-rw-r--r-- | app/views/users/_user.html.haml | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/app/views/users/_user.html.haml b/app/views/users/_user.html.haml index c215a91..9deb596 100644 --- a/app/views/users/_user.html.haml +++ b/app/views/users/_user.html.haml @@ -1,7 +1,10 @@ - %tr - %td= link_to user.username, user - %td= user.created_at.strftime("%d %b, %Y, %H:%M") - %td= user.updated_at.strftime("%d %b, %Y, %H:%M") +%tr + %td + = link_to user.username, user + %td + = user.created_at.strftime("%d %b, %Y, %H:%M") + %td + = user.updated_at.strftime("%d %b, %Y, %H:%M") %td - if user.enabled %button.btn.btn-default{:"data-toggle" => "modal", :"data-target" => "#user-form-#{user.id}", :type => "button"} |