mirror of
https://github.com/Poniverse/Pony.fm.git
synced 2024-11-23 13:37:59 +01:00
d8933374ab
The "Favourites" area within account management was removed as it duplicates the functionality of the favourites area on public profiles.
24 lines
1.2 KiB
HTML
24 lines
1.2 KiB
HTML
<div class="resource-details artist-details" ng-class="::{'x-archived': artist.is_archived}">
|
|
<ul class="dropdowns">
|
|
<li class="dropdown">
|
|
<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()">
|
|
<span ng-hide="artist.user_data.is_following">Follow</span>
|
|
<span ng-show="artist.user_data.is_following">Following!</span>
|
|
</a>
|
|
</li>
|
|
</ul>
|
|
<header>
|
|
<h1>{{::artist.name}}</h1>
|
|
<ul class="tabs">
|
|
<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>
|
|
</li>
|
|
<li ng-if="::artist.permissions.edit" ui-sref-active="{active: '.account'}"><a ui-sref=".account.settings">Manage Account</a></li>
|
|
</ul>
|
|
</header>
|
|
<div class="stretch-to-bottom">
|
|
<ui-view></ui-view>
|
|
</div>
|
|
</div>
|