Skip to content
Snippets Groups Projects
Commit 3232f547 authored by Dmitriy Zaporozhets's avatar Dmitriy Zaporozhets
Browse files

Add group button at Profile#groups page

parent acb402a1
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -2,7 +2,7 @@ class Profiles::GroupsController < ApplicationController
layout "profile"
 
def index
@groups = current_user.authorized_groups.all
@groups = current_user.authorized_groups.page(params[:page]).per(20)
end
 
def leave
Loading
Loading
.ui-box
%h5.title Groups
%h5.title
%strong Groups
(#{@groups.count})
- if current_user.can_create_group?
%span.pull-right
= link_to new_group_path, class: "btn btn-small btn-primary" do
%i.icon-plus
New Group
%ul.well-list
- @groups.each do |group|
%li
Loading
Loading
@@ -15,3 +22,5 @@
 
= link_to group, class: 'group-name' do
= group.name
= paginate @groups
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment