add contact list
parent
7209c5f70b
commit
3bf6a5ad7e
|
@ -11,6 +11,10 @@ section.profile-projects
|
||||||
span.tag(style='border-left: 5px solid {{::tag.color}};', ng-repeat="tag in ::project.colorized_tags")
|
span.tag(style='border-left: 5px solid {{::tag.color}};', ng-repeat="tag in ::project.colorized_tags")
|
||||||
span.tag-name {{::tag.name}}
|
span.tag-name {{::tag.name}}
|
||||||
|
|
||||||
|
div.project-list-single-members
|
||||||
|
a(tg-repeat="contact in ::project.contacts", tg-nav="user-profile:username=contact.username", title="{{contact.full_name}}")
|
||||||
|
img(tg-bo-src="contact.photo")
|
||||||
|
|
||||||
// div.project-list-single-right
|
// div.project-list-single-right
|
||||||
// div.project-list-single-stats
|
// div.project-list-single-stats
|
||||||
// div.stat-comments(title="2 comments")
|
// div.stat-comments(title="2 comments")
|
||||||
|
@ -22,21 +26,3 @@ section.profile-projects
|
||||||
// div.stat-viewer(title="2 followers")
|
// div.stat-viewer(title="2 followers")
|
||||||
// span.icon.icon-open-eye
|
// span.icon.icon-open-eye
|
||||||
// span.stat-num 4
|
// span.stat-num 4
|
||||||
|
|
||||||
// div.project-list-single-members
|
|
||||||
// a(href="", title="View {{ user.nickname }} profile")
|
|
||||||
// img(src="https://s3.amazonaws.com/uifaces/faces/twitter/mantia/128.jpg")
|
|
||||||
// a(href="", title="View {{ user.nickname }} profile")
|
|
||||||
// img(src="https://s3.amazonaws.com/uifaces/faces/twitter/annapickard/128.jpg")
|
|
||||||
// a(href="", title="View {{ user.nickname }} profile")
|
|
||||||
// img(src="https://s3.amazonaws.com/uifaces/faces/twitter/nexy_dre/128.jpg", alt="{{ user.nickname }}")
|
|
||||||
// a(href="", title="View {{ user.nickname }} profile")
|
|
||||||
// img(src="https://s3.amazonaws.com/uifaces/faces/twitter/pixeliris/128.jpg", alt="{{ user.nickname }}")
|
|
||||||
// a(href="", title="View {{ user.nickname }} profile")
|
|
||||||
// img(src="https://s3.amazonaws.com/uifaces/faces/twitter/cbillins/128.jpg", alt="{{ user.nickname }}")
|
|
||||||
// a(href="", title="View {{ user.nickname }} profile")
|
|
||||||
// img(src="https://s3.amazonaws.com/uifaces/faces/twitter/allisongrayce/128.jpg", alt="{{ user.nickname }}")
|
|
||||||
// a(href="", title="View {{ user.nickname }} profile")
|
|
||||||
// img(src="https://s3.amazonaws.com/uifaces/faces/twitter/uxceo/128.jpg", alt="{{ user.nickname }}")
|
|
||||||
// a(href="", title="View {{ user.nickname }} profile")
|
|
||||||
// img(src="https://s3.amazonaws.com/uifaces/faces/twitter/syswarren/128.jpg", alt="{{ user.nickname }}")
|
|
||||||
|
|
|
@ -15,7 +15,8 @@ class UserService extends taiga.Service
|
||||||
.then (contacts) ->
|
.then (contacts) ->
|
||||||
projects = projects.map (project) ->
|
projects = projects.map (project) ->
|
||||||
project.contacts = contacts.filter (contact) ->
|
project.contacts = contacts.filter (contact) ->
|
||||||
return project.members.indexOf(contact.id) != -1
|
contactId = contact.get("id")
|
||||||
|
return project.members.indexOf(contactId) != -1
|
||||||
|
|
||||||
return project
|
return project
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue