Commit fd9a8c36010e6fe9377f75eff044d7551761c2b6

Authored by Dmitriy Zaporozhets
1 parent a184fcf3

Add group avatar to group page. Changed default avatar for group

Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
app/assets/images/no_group_avatar.png

704 Bytes | W: | H:

4.77 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin
app/views/dashboard/_groups.html.haml
... ... @@ -10,7 +10,7 @@
10 10 - groups.each do |group|
11 11 %li.group-row
12 12 = link_to group_path(id: group.path), class: dom_class(group) do
13   - = image_tag group_icon(group.path), class: "avatar s32"
  13 + = image_tag group_icon(group.path), class: "avatar s24"
14 14 %span.group-name.filter-title
15 15 = truncate(group.name, length: 35)
16 16 %span.arrow
... ...
app/views/groups/show.html.haml
... ... @@ -13,9 +13,13 @@
13 13 %p.nothing_here_message Project activity will be displayed here
14 14 .loading.hide
15 15 .side.col-md-4
16   - - if @group.description.present?
17   - .description-block
18   - = @group.description
  16 + .light-well.append-bottom-20
  17 + = image_tag group_icon(@group.path), class: "avatar s90"
  18 + .clearfix.light
  19 + %h3.page-title
  20 + = @group.name
  21 + - if @group.description.present?
  22 + %p= @group.description
19 23 = render "projects", projects: @projects
20 24 .prepend-top-20
21 25 = link_to group_path(@group, { format: :atom, private_token: current_user.private_token }), title: "Feed" do
... ...