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
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
gitlab-ce
Commits
c76764b7
Commit
c76764b7
authored
Dec 11, 2012
by
Cyril
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add missing mandatory tr in thead
parent
9f940aea
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
42 additions
and
36 deletions
+42
-36
app/views/admin/groups/index.html.haml
app/views/admin/groups/index.html.haml
+8
-7
app/views/admin/projects/index.html.haml
app/views/admin/projects/index.html.haml
+9
-8
app/views/admin/users/index.html.haml
app/views/admin/users/index.html.haml
+10
-9
app/views/milestones/show.html.haml
app/views/milestones/show.html.haml
+10
-8
app/views/tree/_tree.html.haml
app/views/tree/_tree.html.haml
+5
-4
No files found.
app/views/admin/groups/index.html.haml
View file @
c76764b7
...
...
@@ -12,13 +12,14 @@
%table
%thead
%th
Name
%i
.icon-sort-down
%th
Path
%th
Projects
%th
Owner
%th
.cred
Danger Zone!
%tr
%th
Name
%i
.icon-sort-down
%th
Path
%th
Projects
%th
Owner
%th
.cred
Danger Zone!
-
@groups
.
each
do
|
group
|
%tr
...
...
app/views/admin/projects/index.html.haml
View file @
c76764b7
...
...
@@ -9,14 +9,15 @@
%table
%thead
%th
Name
%i
.icon-sort-down
%th
Path
%th
Team Members
%th
Last Commit
%th
Edit
%th
.cred
Danger Zone!
%tr
%th
Name
%i
.icon-sort-down
%th
Path
%th
Team Members
%th
Last Commit
%th
Edit
%th
.cred
Danger Zone!
-
@projects
.
each
do
|
project
|
%tr
...
...
app/views/admin/users/index.html.haml
View file @
c76764b7
...
...
@@ -21,15 +21,16 @@
%table
%thead
%th
Admin
%th
Name
%i
.icon-sort-down
%th
Username
%th
Email
%th
Projects
%th
Edit
%th
.cred
Danger Zone!
%tr
%th
Admin
%th
Name
%i
.icon-sort-down
%th
Username
%th
Email
%th
Projects
%th
Edit
%th
.cred
Danger Zone!
-
@admin_users
.
each
do
|
user
|
%tr
...
...
app/views/milestones/show.html.haml
View file @
c76764b7
...
...
@@ -47,10 +47,11 @@
.span6
%table
.milestone-issue-filter
%thead
%th
%ul
.nav.nav-pills
%li
.active
=
link_to
(
'Open Issues'
,
'#'
)
%li
=
link_to
(
'All Issues'
,
'#'
)
%tr
%th
%ul
.nav.nav-pills
%li
.active
=
link_to
(
'Open Issues'
,
'#'
)
%li
=
link_to
(
'All Issues'
,
'#'
)
-
@issues
.
each
do
|
issue
|
%tr
{
data:
{
closed:
issue
.
closed
}}
%td
...
...
@@ -62,10 +63,11 @@
.span6
%table
.milestone-merge-requests-filter
%thead
%th
%ul
.nav.nav-pills
%li
.active
=
link_to
(
'Open Merge Requests'
,
'#'
)
%li
=
link_to
(
'All Merge Requests'
,
'#'
)
%tr
%th
%ul
.nav.nav-pills
%li
.active
=
link_to
(
'Open Merge Requests'
,
'#'
)
%li
=
link_to
(
'All Merge Requests'
,
'#'
)
-
@merge_requests
.
each
do
|
merge_request
|
%tr
{
data:
{
closed:
merge_request
.
closed
}}
%td
...
...
app/views/tree/_tree.html.haml
View file @
c76764b7
...
...
@@ -16,10 +16,11 @@
-
else
%table
#tree-slider
{
class:
"table_#{@hex_path} tree-table"
}
%thead
%th
Name
%th
Last Update
%th
Last Commit
%th
=
link_to
"history"
,
project_commits_path
(
@project
,
@id
),
class:
"btn very_small right"
%tr
%th
Name
%th
Last Update
%th
Last Commit
%th
=
link_to
"history"
,
project_commits_path
(
@project
,
@id
),
class:
"btn very_small right"
-
if
tree
.
up_dir?
%tr
.tree-item
...
...
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