try to mark user accoutn

This commit is contained in:
Lisa Passing 2015-03-25 11:17:46 +01:00
parent 5dc699b49f
commit aa9f226299
2 changed files with 8 additions and 0 deletions

View File

@ -14,6 +14,10 @@
<section class="profile-orgs">
<h1>Organizations</h1>
{{#collection "accounts-list" contentBinding="controller"}}
{{#if view.account.type == user}}
hello user
{{/if}}
{{#link-to "account" view.account class="name"}}
<div class="media">
<div class="media-elem">

View File

@ -21,6 +21,10 @@ View = Ember.CollectionView.extend
@get('content.name') || @get('content.login')
).property('content.login', 'content.name')
isUser: (->
@get('content.type')
).property('content.type')
urlAccount: (->
accountUrl(@get('account.login'))
).property('account.login')