]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/+about/about-instance/about-instance.component.html
Improve P2P & Privacy section
[github/Chocobozzz/PeerTube.git] / client / src / app / +about / about-instance / about-instance.component.html
1 <div i18n class="about-instance-title">
2 About {{ instanceName }} instance
3 </div>
4
5 <div class="short-description">
6 <div>{{ shortDescription }}</div>
7 </div>
8
9 <div class="description">
10 <div i18n class="section-title">Description</div>
11
12 <div [innerHTML]="descriptionHTML"></div>
13 </div>
14
15 <div class="terms">
16 <div i18n class="section-title">Terms</div>
17
18 <div [innerHTML]="termsHTML"></div>
19 </div>
20
21 <div class="signup">
22 <div i18n class="section-title">Signup</div>
23
24 <div *ngIf="isSignupAllowed">
25 <ng-container i18n>User registration is allowed and</ng-container>
26
27 <ng-container i18n *ngIf="userVideoQuota !== -1">
28 this instance provides a baseline quota of {{ userVideoQuota | bytes: 0 }} space for the videos of its users.
29 </ng-container>
30
31 <ng-container i18n *ngIf="userVideoQuota === -1">
32 this instance provides unlimited space for the videos of its users.
33 </ng-container>
34 </div>
35
36 <div i18n *ngIf="isSignupAllowed === false">
37 User registration is currently not allowed.
38 </div>
39 </div>