2016-02-14 11:53:27 +01:00
|
|
|
<div class="resource-details artist-details" ng-class="::{'x-archived': artist.is_archived}">
|
2015-10-25 03:35:37 +01:00
|
|
|
<ul class="dropdowns">
|
|
|
|
<li class="dropdown">
|
2016-02-14 11:53:27 +01:00
|
|
|
<a href="#" class="btn btn-small" ng-class="{'btn-primary': !artist.user_data.is_following}" ng-show="::auth.isLogged && auth.user.id != artist.id" pfm-eat-click ng-click="toggleFollow()">
|
2015-10-25 03:35:37 +01:00
|
|
|
<span ng-hide="artist.user_data.is_following">Follow</span>
|
|
|
|
<span ng-show="artist.user_data.is_following">Following!</span>
|
|
|
|
</a>
|
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
<header>
|
2016-02-14 11:53:27 +01:00
|
|
|
<h1>{{::artist.name}}</h1>
|
2015-10-25 03:35:37 +01:00
|
|
|
<ul class="tabs">
|
2016-03-18 12:22:54 +01:00
|
|
|
<li ui-sref-active="active"><a ui-sref=".profile">Profile</a></li>
|
|
|
|
<li ui-sref-active="active"><a ui-sref=".content">Content</a></li>
|
|
|
|
<li ng-if="::!artist.is_archived" ui-sref-active="active">
|
|
|
|
<a ui-sref=".favourites">Favourites</a>
|
2016-02-14 11:53:27 +01:00
|
|
|
</li>
|
2016-03-19 03:47:45 +01:00
|
|
|
<li ng-if="::artist.permissions.edit" ui-sref-active="{active: '.account'}"><a ui-sref=".account.settings">Manage Account</a></li>
|
2015-10-25 03:35:37 +01:00
|
|
|
</ul>
|
|
|
|
</header>
|
|
|
|
<div class="stretch-to-bottom">
|
|
|
|
<ui-view></ui-view>
|
|
|
|
</div>
|
|
|
|
</div>
|