thirteen-tien-len/app/views/users/show.html.haml
2023-11-15 13:05:07 +00:00

16 lines
365 B
Plaintext

- if current_user.signed_in?
%section.micropost_form
= render 'shared/micropost_form'
.contain
%h1 #{@user.display_name if @user.display_name}
%section.stats
= render 'shared/stats'
- if @user.microposts.any?
%section.microposts
%h3 Posts #{@user.microposts.count}
%ol.microposts
= render @microposts
= will_paginate @microposts