Add group avatar to group page. Changed default avatar for group
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
This commit is contained in:
parent
a184fcf368
commit
fd9a8c3601
3 changed files with 8 additions and 4 deletions
Binary file not shown.
Before Width: | Height: | Size: 704 B After Width: | Height: | Size: 4.8 KiB |
|
@ -10,7 +10,7 @@
|
|||
- groups.each do |group|
|
||||
%li.group-row
|
||||
= link_to group_path(id: group.path), class: dom_class(group) do
|
||||
= image_tag group_icon(group.path), class: "avatar s32"
|
||||
= image_tag group_icon(group.path), class: "avatar s24"
|
||||
%span.group-name.filter-title
|
||||
= truncate(group.name, length: 35)
|
||||
%span.arrow
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue