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
1704dc97
Commit
1704dc97
authored
Jan 16, 2018
by
Mark Fletcher
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Refactor of buttons _dropdown partial
Remove block + interpolation to simplify the calls to link helpers
parent
4b99bee0
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
18 deletions
+8
-18
app/views/projects/buttons/_dropdown.html.haml
app/views/projects/buttons/_dropdown.html.haml
+8
-18
No files found.
app/views/projects/buttons/_dropdown.html.haml
View file @
1704dc97
...
...
@@ -10,37 +10,28 @@
-
if
can_create_issue
%li
=
link_to
new_project_issue_path
(
@project
)
do
#{
_
(
'New issue'
)
}
=
link_to
_
(
'New issue'
),
new_project_issue_path
(
@project
)
-
if
merge_project
%li
=
link_to
project_new_merge_request_path
(
merge_project
)
do
#{
_
(
'New merge request'
)
}
=
link_to
_
(
'New merge request'
),
project_new_merge_request_path
(
merge_project
)
-
if
can_create_snippet
%li
=
link_to
new_project_snippet_path
(
@project
)
do
#{
_
(
'New snippet'
)
}
=
link_to
_
(
'New snippet'
),
new_project_snippet_path
(
@project
)
-
if
can_create_issue
||
merge_project
||
can_create_snippet
%li
.divider
-
if
can?
(
current_user
,
:push_code
,
@project
)
%li
=
link_to
project_new_blob_path
(
@project
,
@project
.
default_branch
||
'master'
)
do
#{
_
(
'New file'
)
}
=
link_to
_
(
'New file'
),
project_new_blob_path
(
@project
,
@project
.
default_branch
||
'master'
)
-
unless
@project
.
empty_repo?
%li
=
link_to
new_project_branch_path
(
@project
)
do
#{
_
(
'New branch'
)
}
=
link_to
_
(
'New branch'
),
new_project_branch_path
(
@project
)
%li
=
link_to
new_project_tag_path
(
@project
)
do
#{
_
(
'New tag'
)
}
=
link_to
_
(
'New tag'
),
new_project_tag_path
(
@project
)
-
elsif
current_user
&&
current_user
.
already_forked?
(
@project
)
%li
=
link_to
project_new_blob_path
(
@project
,
@project
.
default_branch
||
'master'
)
do
#{
_
(
'New file'
)
}
=
link_to
_
(
'New file'
),
project_new_blob_path
(
@project
,
@project
.
default_branch
||
'master'
)
-
elsif
can?
(
current_user
,
:fork_project
,
@project
)
%li
-
continue_params
=
{
to:
project_new_blob_path
(
@project
,
@project
.
default_branch
||
'master'
),
...
...
@@ -48,5 +39,4 @@
notice_now:
edit_in_new_fork_notice_now
}
-
fork_path
=
project_forks_path
(
@project
,
namespace_key:
current_user
.
namespace
.
id
,
continue:
continue_params
)
=
link_to
fork_path
,
method: :post
do
#{
_
(
'New file'
)
}
=
link_to
_
(
'New file'
),
fork_path
,
method: :post
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