Commit 4f953f6f authored by Dmitriy Zaporozhets's avatar Dmitriy Zaporozhets

Better styling for admin:teams:index page

parent c5f56ee8
...@@ -49,6 +49,14 @@ ...@@ -49,6 +49,14 @@
.span4 .span4
%h4 Stats %h4 Stats
%hr %hr
%p
Teams
%span.light.pull-right
= UserTeam.count
%p
Forks
%span.light.pull-right
= ForkedProjectLink.count
%p %p
Issues Issues
%span.light.pull-right %span.light.pull-right
......
%h3.page_title %h3.page_title
Teams Teams (#{@teams.total_count})
%small %small
allow you to organize groups of people that have a common focus. Use teams to simplify the process of assigning roles to groups of people. allow you to organize groups of people that have a common focus. Use teams to simplify the process of assigning roles to groups of people.
= link_to 'New Team', new_admin_team_path, class: "btn btn-small pull-right" = link_to 'New Team', new_admin_team_path, class: "btn btn-small pull-right"
%br %br
= form_tag admin_teams_path, method: :get, class: 'form-inline' do = form_tag admin_teams_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 Members
%th Owner
%th.cred Danger Zone!
%ul.bordered-list
- @teams.each do |team| - @teams.each do |team|
%tr %li
%td .clearfix
%strong= link_to team.name, admin_team_path(team) .pull-right.prepend-top-10
%td= truncate team.description = link_to 'Edit', edit_admin_team_path(team), id: "edit_#{dom_id(team)}", class: "btn btn-small"
%td= team.path = link_to 'Destroy', admin_team_path(team), confirm: "REMOVE #{team.name}? Are you sure?", method: :delete, class: "btn btn-small btn-remove"
%td= team.projects.count
%td= team.members.count %h4
%td = link_to admin_team_path(team) do
- if team.owner %i.icon-group
= link_to team.owner.name, admin_user_path(team.owner) = team.name
- else
(deleted) .clearfix.light.append-bottom-10
%td.bgred %span
= link_to 'Edit', edit_admin_team_path(team), id: "edit_#{dom_id(team)}", class: "btn btn-small" %b Owner:
= link_to 'Destroy', admin_team_path(team), confirm: "REMOVE #{team.name}? Are you sure?", method: :delete, class: "btn btn-small btn-remove" - if team.owner
= link_to team.owner.name, admin_user_path(team.owner)
- else
(deleted)
\|
%span
%b Users:
%span.badge= team.members.count
\|
%span
%b Projects:
%span.badge= team.projects.count
.clearfix
%p
= truncate team.description, length: 150
= paginate @teams, theme: "gitlab" = paginate @teams, 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