diff options
author | Chocobozzz <me@florianbigard.com> | 2018-08-21 16:18:59 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2018-08-27 09:41:54 +0200 |
commit | 22a16e36f6526887ed8f5e5d3c9f9e5da0b4a8cd (patch) | |
tree | 93c53e0619f966bd9ff1bb698c411277a9447a41 /client/src/app/shared/user-subscription/subscribe-button.component.html | |
parent | 99492dbc0d87ef54d0dab7d8d44f8d0de5722bdd (diff) | |
download | PeerTube-22a16e36f6526887ed8f5e5d3c9f9e5da0b4a8cd.tar.gz PeerTube-22a16e36f6526887ed8f5e5d3c9f9e5da0b4a8cd.tar.zst PeerTube-22a16e36f6526887ed8f5e5d3c9f9e5da0b4a8cd.zip |
Add local user subscriptions
Diffstat (limited to 'client/src/app/shared/user-subscription/subscribe-button.component.html')
-rw-r--r-- | client/src/app/shared/user-subscription/subscribe-button.component.html | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/client/src/app/shared/user-subscription/subscribe-button.component.html b/client/src/app/shared/user-subscription/subscribe-button.component.html new file mode 100644 index 000000000..63b313662 --- /dev/null +++ b/client/src/app/shared/user-subscription/subscribe-button.component.html | |||
@@ -0,0 +1,15 @@ | |||
1 | <span i18n *ngIf="subscribed === false" class="subscribe-button" role="button" (click)="subscribe()"> | ||
2 | <span>Subscribe</span> | ||
3 | <span *ngIf="displayFollowers && videoChannel.followersCount !== 0" class="followers-count"> | ||
4 | {{ videoChannel.followersCount | myNumberFormatter }} | ||
5 | </span> | ||
6 | </span> | ||
7 | |||
8 | <span *ngIf="subscribed === true" class="unsubscribe-button" role="button" (click)="unsubscribe()"> | ||
9 | <span class="subscribed" i18n>Subscribed</span> | ||
10 | <span class="unsubscribe" i18n>Unsubscribe</span> | ||
11 | |||
12 | <span *ngIf="displayFollowers && videoChannel.followersCount !== 0" class="followers-count"> | ||
13 | {{ videoChannel.followersCount | myNumberFormatter }} | ||
14 | </span> | ||
15 | </span> | ||