try to mark user accoutn
This commit is contained in:
parent
5dc699b49f
commit
aa9f226299
|
@ -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">
|
||||
|
|
|
@ -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')
|
||||
|
|
Loading…
Reference in New Issue
Block a user