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
Jérome Perrin
gitlab-ce
Commits
65696aaa
Commit
65696aaa
authored
Jan 08, 2014
by
Dmitriy Zaporozhets
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix form styles
Signed-off-by:
Dmitriy Zaporozhets
<
dmitriy.zaporozhets@gmail.com
>
parent
eace1ce6
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
21 additions
and
16 deletions
+21
-16
app/views/projects/deploy_keys/index.html.haml
app/views/projects/deploy_keys/index.html.haml
+2
-2
app/views/projects/edit.html.haml
app/views/projects/edit.html.haml
+16
-11
app/views/projects/team_members/import.html.haml
app/views/projects/team_members/import.html.haml
+3
-3
No files found.
app/views/projects/deploy_keys/index.html.haml
View file @
65696aaa
...
...
@@ -12,7 +12,7 @@
%hr
.clearfix
.row
.col-md-
5
.enabled-keys
.col-md-
6
.enabled-keys
%h5
%strong
.cgreen
Enabled deploy keys
for this project
...
...
@@ -21,7 +21,7 @@
-
if
@enabled_keys
.
blank?
.light-well
%p
.nothing_here_message
Create a
#{
link_to
'new deploy key'
,
new_project_deploy_key_path
(
@project
)
}
or add an existing one
.col-md-
5
.available-keys
.col-md-
6
.available-keys
%h5
%strong
Deploy keys
from projects available to you
...
...
app/views/projects/edit.html.haml
View file @
65696aaa
...
...
@@ -46,8 +46,9 @@
.form-group
=
f
.
label
:issues_enabled
,
"Issues"
,
class:
'control-label'
.col-sm-10
=
f
.
check_box
:issues_enabled
%span
.descr
Lightweight issue tracking system for this project
.checkbox
=
f
.
check_box
:issues_enabled
%span
.descr
Lightweight issue tracking system for this project
-
if
Project
.
issues_tracker
.
values
.
count
>
1
.form-group
...
...
@@ -56,31 +57,35 @@
.form-group
=
f
.
label
:issues_tracker_id
,
"Project name or id in issues tracker"
,
class:
'control-label'
.col-sm-10
=
f
.
text_field
:issues_tracker_id
,
disabled:
!
@project
.
can_have_issues_tracker_id?
.col-sm-10
=
f
.
text_field
:issues_tracker_id
,
disabled:
!
@project
.
can_have_issues_tracker_id?
,
class:
'form-control'
.form-group
=
f
.
label
:merge_requests_enabled
,
"Merge Requests"
,
class:
'control-label'
.col-sm-10
=
f
.
check_box
:merge_requests_enabled
%span
.descr
Submit changes to be merged upstream.
.checkbox
=
f
.
check_box
:merge_requests_enabled
%span
.descr
Submit changes to be merged upstream.
.form-group
=
f
.
label
:wiki_enabled
,
"Wiki"
,
class:
'control-label'
.col-sm-10
=
f
.
check_box
:wiki_enabled
%span
.descr
Pages for project documentation
.checkbox
=
f
.
check_box
:wiki_enabled
%span
.descr
Pages for project documentation
.form-group
=
f
.
label
:wall_enabled
,
"Wall"
,
class:
'control-label'
.col-sm-10
=
f
.
check_box
:wall_enabled
%span
.descr
Simple chat system for broadcasting inside project
.checkbox
=
f
.
check_box
:wall_enabled
%span
.descr
Simple chat system for broadcasting inside project
.form-group
=
f
.
label
:snippets_enabled
,
"Snippets"
,
class:
'control-label'
.col-sm-10
=
f
.
check_box
:snippets_enabled
%span
.descr
Share code pastes with others out of git repository
.checkbox
=
f
.
check_box
:snippets_enabled
%span
.descr
Share code pastes with others out of git repository
.form-actions
...
...
app/views/projects/team_members/import.html.haml
View file @
65696aaa
...
...
@@ -3,9 +3,9 @@
%p
.light
Only project members will be imported. Group members will be skipped.
%hr
=
form_tag
apply_import_project_team_members_path
(
@project
),
method:
'post'
do
.
padded
=
label_tag
:source_project_id
,
"Project"
=
form_tag
apply_import_project_team_members_path
(
@project
),
method:
'post'
,
class:
'form-horizontal'
do
.
form-group
=
label_tag
:source_project_id
,
"Project"
,
class:
'control-label'
.col-sm-10
=
select_tag
(
:source_project_id
,
options_from_collection_for_select
(
current_user
.
authorized_projects
,
:id
,
:name_with_namespace
),
prompt:
"Select project"
,
class:
"chosen lg"
,
required:
true
)
.form-actions
...
...
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