Skip to content
GitLab
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
9f4b395e
Commit
9f4b395e
authored
Jun 27, 2018
by
Guilhem Saurel
Browse files
contributors table: show only gepetto projects
parent
f1513254
Pipeline
#883
passed with stages
in 46 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
rainboard/models.py
View file @
9f4b395e
...
...
@@ -705,7 +705,7 @@ class Contributor(models.Model):
return
', '
.
join
(
str
(
mail
)
for
mail
in
self
.
contributormail_set
.
filter
(
invalid
=
False
))
def
contributed
(
self
):
return
', '
.
join
(
str
(
project
)
for
project
in
self
.
projects
.
all
(
))
return
', '
.
join
(
str
(
project
)
for
project
in
self
.
projects
.
filter
(
from_gepetto
=
True
))
class
ContributorName
(
models
.
Model
):
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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