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