Commit 8b65d069 authored by Dmitriy Zaporozhets's avatar Dmitriy Zaporozhets

Restyle admin -> groups page

parent 4d9bdab0
%h3.page_title %h3.page_title
Groups Groups (#{@groups.total_count})
%small %small
allows you to keep projects organized. allows you to keep projects organized.
Use groups for uniting related projects. Use groups for uniting related projects.
...@@ -7,31 +7,42 @@ ...@@ -7,31 +7,42 @@
= link_to 'New Group', new_admin_group_path, class: "btn btn-small pull-right" = link_to 'New Group', new_admin_group_path, class: "btn btn-small pull-right"
%br %br
= form_tag admin_groups_path, method: :get, class: 'form-inline' do = form_tag admin_groups_path, method: :get, class: 'form-inline' do
= text_field_tag :name, params[:name], class: "xlarge" = text_field_tag :name, params[:name], class: "span6"
= submit_tag "Search", class: "btn submit btn-primary" = submit_tag "Search", class: "btn submit btn-primary"
%table %hr
%thead
%tr
%th
Name
%i.icon-sort-down
%th Description
%th Path
%th Projects
%th Owner
%th.cred Danger Zone!
%ul.bordered-list
- @groups.each do |group| - @groups.each do |group|
%tr %li
%td .clearfix
%strong= link_to group.name, [:admin, group] .pull-right.prepend-top-10
%td= truncate group.description = link_to 'Edit', edit_admin_group_path(group), id: "edit_#{dom_id(group)}", class: "btn btn-small"
%td= group.path = link_to 'Destroy', [:admin, group], confirm: "REMOVE #{group.name}? Are you sure?", method: :delete, class: "btn btn-small btn-remove"
%td= group.projects.count
%td %h4
= link_to group.owner_name, admin_user_path(group.owner) = link_to [:admin, group] do
%td.bgred = group.name
= link_to 'Edit', edit_admin_group_path(group), id: "edit_#{dom_id(group)}", class: "btn btn-small"
= link_to 'Destroy', [:admin, group], confirm: "REMOVE #{group.name}? Are you sure?", method: :delete, class: "btn btn-small btn-remove" →
%span.monospace
%i.icon-folder-close
%strong #{group.path}/
.clearfix.light.append-bottom-10
%span
%b Owner:
- if group.owner
= link_to group.owner_name, admin_user_path(group.owner)
- else
(deleted)
\|
%span
%b Projects:
%span.badge= group.projects.count
.clearfix
%p
= truncate group.description, length: 150
= paginate @groups, theme: "gitlab" = paginate @groups, theme: "gitlab"
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment