Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Tatuya Kamada
gitlab-ce
Commits
b6a609ed
Commit
b6a609ed
authored
Feb 15, 2014
by
Dmitriy Zaporozhets
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Truncate long names for admin dashboard with css
Signed-off-by:
Dmitriy Zaporozhets
<
dmitriy.zaporozhets@gmail.com
>
parent
5cf5c177
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
131 additions
and
126 deletions
+131
-126
app/assets/stylesheets/sections/admin.scss
app/assets/stylesheets/sections/admin.scss
+5
-1
app/views/admin/dashboard/index.html.haml
app/views/admin/dashboard/index.html.haml
+126
-125
No files found.
app/assets/stylesheets/sections/admin.scss
View file @
b6a609ed
...
...
@@ -2,7 +2,7 @@
* Admin area
*
*/
.admin
_dash
{
.admin
-dashboard
{
.data
{
a
{
h1
{
...
...
@@ -14,6 +14,10 @@
}
}
}
.str-truncated
{
max-width
:
60%
;
}
}
.admin-filter
form
{
...
...
app/views/admin/dashboard/index.html.haml
View file @
b6a609ed
...
...
@@ -3,136 +3,137 @@
%p
.light
You can manage projects, users and other GitLab data from here.
%hr
.admin_dash.row
.col-sm-4
.light-well
%h4
Projects
.data
=
link_to
admin_projects_path
do
%h1
=
Project
.
count
%hr
=
link_to
'New Project'
,
new_project_path
,
class:
"btn btn-new"
.col-sm-4
.light-well
%h4
Users
.data
=
link_to
admin_users_path
do
%h1
=
User
.
count
%hr
=
link_to
'New User'
,
new_admin_user_path
,
class:
"btn btn-new"
.col-sm-4
.light-well
%h4
Groups
.data
=
link_to
admin_groups_path
do
%h1
=
Group
.
count
%hr
=
link_to
'New Group'
,
new_admin_group_path
,
class:
"btn btn-new"
.admin-dashboard
.row
.col-sm-4
.light-well
%h4
Projects
.data
=
link_to
admin_projects_path
do
%h1
=
Project
.
count
%hr
=
link_to
'New Project'
,
new_project_path
,
class:
"btn btn-new"
.col-sm-4
.light-well
%h4
Users
.data
=
link_to
admin_users_path
do
%h1
=
User
.
count
%hr
=
link_to
'New User'
,
new_admin_user_path
,
class:
"btn btn-new"
.col-sm-4
.light-well
%h4
Groups
.data
=
link_to
admin_groups_path
do
%h1
=
Group
.
count
%hr
=
link_to
'New Group'
,
new_admin_group_path
,
class:
"btn btn-new"
.row.prepend-top-10
.col-md-4
%h4
Latest projects
%hr
-
@projects
.
each
do
|
project
|
.row.prepend-top-10
.col-md-4
%h4
Latest projects
%hr
-
@projects
.
each
do
|
project
|
%p
=
link_to
project
.
name_with_namespace
,
[
:admin
,
project
],
class:
'str-truncated'
%span
.light.pull-right
#{
time_ago_with_tooltip
(
project
.
created_at
)
}
.col-md-4
%h4
Latest users
%hr
-
@users
.
each
do
|
user
|
%p
=
link_to
[
:admin
,
user
],
class:
'str-truncated'
do
=
user
.
name
%span
.light.pull-right
#{
time_ago_with_tooltip
(
user
.
created_at
)
}
.col-md-4
%h4
Latest groups
%hr
-
@groups
.
each
do
|
group
|
%p
=
link_to
[
:admin
,
group
],
class:
'str-truncated'
do
=
group
.
name
%span
.light.pull-right
#{
time_ago_with_tooltip
(
group
.
created_at
)
}
%br
.row
.col-md-4
%h4
Stats
%hr
%p
=
link_to
project
.
name_with_namespace
,
[
:admin
,
project
]
Forks
%span
.light.pull-right
#{
time_ago_with_tooltip
(
project
.
created_at
)
}
.col-md-4
%h4
Latest users
%hr
-
@users
.
each
do
|
user
|
=
ForkedProjectLink
.
count
%p
=
link_to
[
:admin
,
user
]
do
=
user
.
name
Issues
%span
.light.pull-right
#{
time_ago_with_tooltip
(
user
.
created_at
)
}
.col-md-4
%h4
Latest groups
%hr
-
@groups
.
each
do
|
group
|
=
Issue
.
count
%p
=
link_to
[
:admin
,
group
]
do
=
group
.
name
Merge Requests
%span
.light.pull-right
#{
time_ago_with_tooltip
(
group
.
created_at
)
}
%br
.row
.col-md-4
%h4
Stats
%hr
%p
Forks
%span
.light.pull-right
=
ForkedProjectLink
.
count
%p
Issues
%span
.light.pull-right
=
Issue
.
count
%p
Merge Requests
%span
.light.pull-right
=
MergeRequest
.
count
%p
Notes
%span
.light.pull-right
=
Note
.
count
%p
Snippets
%span
.light.pull-right
=
Snippet
.
count
%p
SSH Keys
%span
.light.pull-right
=
Key
.
count
%p
Milestones
%span
.light.pull-right
=
Milestone
.
count
.col-md-4
%h4
Features
%hr
%p
Sign up
%span
.light.pull-right
=
boolean_to_icon
gitlab_config
.
signup_enabled
%p
LDAP
%span
.light.pull-right
=
boolean_to_icon
Gitlab
.
config
.
ldap
.
enabled
%p
Gravatar
%span
.light.pull-right
=
boolean_to_icon
Gitlab
.
config
.
gravatar
.
enabled
%p
OmniAuth
%span
.light.pull-right
=
boolean_to_icon
Gitlab
.
config
.
omniauth
.
enabled
.col-md-4
%h4
Components
%hr
%p
GitLab
%span
.pull-right
=
Gitlab
::
VERSION
%p
GitLab Shell
%span
.pull-right
=
Gitlab
::
Shell
.
new
.
version
%p
GitLab API
%span
.pull-right
=
API
::
API
::
version
%p
Ruby
%span
.pull-right
#{
RUBY_VERSION
}
p
#{
RUBY_PATCHLEVEL
}
=
MergeRequest
.
count
%p
Notes
%span
.light.pull-right
=
Note
.
count
%p
Snippets
%span
.light.pull-right
=
Snippet
.
count
%p
SSH Keys
%span
.light.pull-right
=
Key
.
count
%p
Milestones
%span
.light.pull-right
=
Milestone
.
count
.col-md-4
%h4
Features
%hr
%p
Sign up
%span
.light.pull-right
=
boolean_to_icon
gitlab_config
.
signup_enabled
%p
LDAP
%span
.light.pull-right
=
boolean_to_icon
Gitlab
.
config
.
ldap
.
enabled
%p
Gravatar
%span
.light.pull-right
=
boolean_to_icon
Gitlab
.
config
.
gravatar
.
enabled
%p
OmniAuth
%span
.light.pull-right
=
boolean_to_icon
Gitlab
.
config
.
omniauth
.
enabled
.col-md-4
%h4
Components
%hr
%p
GitLab
%span
.pull-right
=
Gitlab
::
VERSION
%p
GitLab Shell
%span
.pull-right
=
Gitlab
::
Shell
.
new
.
version
%p
GitLab API
%span
.pull-right
=
API
::
API
::
version
%p
Ruby
%span
.pull-right
#{
RUBY_VERSION
}
p
#{
RUBY_PATCHLEVEL
}
%p
Rails
%span
.pull-right
#{
Rails
::
VERSION
::
STRING
}
%p
Rails
%span
.pull-right
#{
Rails
::
VERSION
::
STRING
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment