Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Gepetto
dashboard
Commits
8878bf8a
Commit
8878bf8a
authored
Jul 11, 2018
by
Guilhem Saurel
Browse files
oops
parent
96bb4937
Pipeline
#936
failed with stages
in 44 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
rainboard/models.py
View file @
8878bf8a
...
...
@@ -294,10 +294,10 @@ class Project(Links, NamedModel, TimeStampedModel):
return
images
.
order_by
(
Length
(
'robotpkg__name'
).
desc
()).
first
()
def
print_deps
(
self
):
return
', '
.
join
(
str
(
d
.
library
)
for
d
in
p
.
dependencies
.
all
())
return
', '
.
join
(
str
(
d
.
library
)
for
d
in
self
.
dependencies
.
all
())
def
print_rdeps
(
self
):
return
', '
.
join
(
str
(
d
.
project
)
for
d
in
p
.
rdeps
.
all
())
return
', '
.
join
(
str
(
d
.
project
)
for
d
in
self
.
rdeps
.
all
())
class
Repo
(
TimeStampedModel
):
name
=
models
.
CharField
(
max_length
=
200
)
...
...
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