Sha256: 696e77f5c3184d9bcc36fcdcda5051903b2973ca85ab53e6c1ac468f02fa1181

Contents?: true

Size: 860 Bytes

Versions: 2

Compression:

Stored size: 860 Bytes

Contents

- breadcrumb :user
h1
  | Your Profile
section
  h2
    | Names
  dl
    dt
      | Name
    dd
      =  ActiveDecorator::Decorator.instance.decorate(current_user).name
    dt
      | Nickame
    dd
      = current_user.nickname
    = link_to 'edit', edit_user_registration_path, class: 'btn btn-default'
section
  h2
    | Groups you created
  ul.list-group
    - @created_groups.each do |group|
      li.list-group-item
        = link_to group.name, group
  .btn-group
    = link_to 'more', '#', class: 'btn btn-link'
    = link_to 'create more', new_group_path, class: 'btn btn-link'
section
  h2
    | Groups you join
  ul.list-group
    - @joined_groups.each do |group|
      li.list-group-item
        = link_to group.name, group
  .btn-group
    = link_to 'more', '#', class: 'btn btn-link'
    = link_to 'join more', groups_path, class: 'btn btn-link'

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
nippo_core-1.0.1 app/views/nippo_core/users/show.slim
nippo_core-1.0.0 app/views/nippo_core/users/show.slim