summaryrefslogtreecommitdiff
path: root/app/views/groups/show.html.haml
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2014-01-28 10:51:18 +0200
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2014-01-28 10:51:18 +0200
commitfd9a8c36010e6fe9377f75eff044d7551761c2b6 (patch)
tree8a734906be80965ca79d9ff68b76351eaad2ce8f /app/views/groups/show.html.haml
parenta184fcf368686f8224315c8afa6e5ec923e37c4b (diff)
downloadgitlab-ce-fd9a8c36010e6fe9377f75eff044d7551761c2b6.tar.gz
Add group avatar to group page. Changed default avatar for group
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
Diffstat (limited to 'app/views/groups/show.html.haml')
-rw-r--r--app/views/groups/show.html.haml10
1 files changed, 7 insertions, 3 deletions
diff --git a/app/views/groups/show.html.haml b/app/views/groups/show.html.haml
index 5332d383c4c..6780010031e 100644
--- a/app/views/groups/show.html.haml
+++ b/app/views/groups/show.html.haml
@@ -13,9 +13,13 @@
%p.nothing_here_message Project activity will be displayed here
.loading.hide
.side.col-md-4
- - if @group.description.present?
- .description-block
- = @group.description
+ .light-well.append-bottom-20
+ = image_tag group_icon(@group.path), class: "avatar s90"
+ .clearfix.light
+ %h3.page-title
+ = @group.name
+ - if @group.description.present?
+ %p= @group.description
= render "projects", projects: @projects
.prepend-top-20
= link_to group_path(@group, { format: :atom, private_token: current_user.private_token }), title: "Feed" do