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
1
Merge Requests
1
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
nexedi
gitlab-ce
Commits
e9dbcd8a
Commit
e9dbcd8a
authored
Aug 10, 2016
by
Katarzyna Kobierska
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use local variables in partial
parent
e81ed371
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
10 additions
and
10 deletions
+10
-10
app/views/admin/builds/index.html.haml
app/views/admin/builds/index.html.haml
+1
-1
app/views/projects/builds/_tabs.html.haml
app/views/projects/builds/_tabs.html.haml
+8
-8
app/views/projects/builds/index.html.haml
app/views/projects/builds/index.html.haml
+1
-1
No files found.
app/views/admin/builds/index.html.haml
View file @
e9dbcd8a
...
...
@@ -5,7 +5,7 @@
.top-area
-
build_path
=
->
(
scope
)
{
admin_builds_path
(
scope:
scope
)
}
=
render
"projects/builds/tabs"
,
build_path:
build_path
=
render
"projects/builds/tabs"
,
build_path:
build_path
,
all_builds:
@all_builds
,
scope:
@scope
.nav-controls
-
if
@all_builds
.
running_or_pending
.
any?
...
...
app/views/projects/builds/_tabs.html.haml
View file @
e9dbcd8a
%ul
.nav-links
%li
{
class:
(
'active'
if
@
scope
.
nil?
)}
%li
{
class:
(
'active'
if
scope
.
nil?
)}
=
link_to
build_path
[
nil
]
do
All
%span
.badge.js-totalbuilds-count
=
number_with_delimiter
(
@
all_builds
.
count
(
:id
))
=
number_with_delimiter
(
all_builds
.
count
(
:id
))
%li
{
class:
(
'active'
if
@
scope
==
'pending'
)}
%li
{
class:
(
'active'
if
scope
==
'pending'
)}
=
link_to
build_path
[
:pending
]
do
Pending
%span
.badge
=
number_with_delimiter
(
@
all_builds
.
pending
.
count
(
:id
))
=
number_with_delimiter
(
all_builds
.
pending
.
count
(
:id
))
%li
{
class:
(
'active'
if
@
scope
==
'running'
)}
%li
{
class:
(
'active'
if
scope
==
'running'
)}
=
link_to
build_path
[
:running
]
do
Running
%span
.badge
=
number_with_delimiter
(
@
all_builds
.
running
.
count
(
:id
))
=
number_with_delimiter
(
all_builds
.
running
.
count
(
:id
))
%li
{
class:
(
'active'
if
@
scope
==
'finished'
)}
%li
{
class:
(
'active'
if
scope
==
'finished'
)}
=
link_to
build_path
[
:finished
]
do
Finished
%span
.badge
=
number_with_delimiter
(
@
all_builds
.
finished
.
count
(
:id
))
=
number_with_delimiter
(
all_builds
.
finished
.
count
(
:id
))
app/views/projects/builds/index.html.haml
View file @
e9dbcd8a
...
...
@@ -5,7 +5,7 @@
%div
{
class:
container_class
}
.top-area
-
build_path
=
->
(
scope
)
{
project_builds_path
(
@project
,
scope:
scope
)
}
=
render
"tabs"
,
build_path:
build_path
=
render
"tabs"
,
build_path:
build_path
,
all_builds:
@all_builds
,
scope:
@scope
.nav-controls
-
if
can?
(
current_user
,
:update_build
,
@project
)
...
...
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